github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/dev/wasm/erc20/Cargo.toml (about) 1 [package] 2 name = "cw-erc20" 3 description = "An implementation of the ERC20 token interface" 4 version = "0.10.0" 5 authors = ["Simon Warta <webmaster128@users.noreply.github.com>"] 6 edition = "2018" 7 license = "Apache-2.0" 8 repository = "https://github.com/CosmWasm/cosmwasm-examples" 9 10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 11 12 [lib] 13 crate-type = ["cdylib", "rlib"] 14 15 [profile.release] 16 opt-level = 3 17 debug = false 18 rpath = false 19 lto = true 20 debug-assertions = false 21 codegen-units = 1 22 panic = 'abort' 23 incremental = false 24 overflow-checks = true 25 26 [features] 27 backtraces = ["cosmwasm-std/backtraces"] 28 29 [dependencies] 30 cosmwasm-std = "1.0.0-beta" 31 cosmwasm-storage = "1.0.0-beta" 32 schemars = "0.8.1" 33 serde = { version = "1.0.125", default-features = false, features = ["derive"] } 34 hex = "0.4" 35 thiserror = "1.0.23" 36 37 [dev-dependencies] 38 cosmwasm-vm = "1.0.0-beta" 39 cosmwasm-schema = "1.0.0-beta"