github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/dev/wasm/cw20-base/Cargo.toml (about) 1 [package] 2 name = "cw20-base" 3 version = "0.13.2" 4 authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"] 5 edition = "2018" 6 description = "Basic implementation of a CosmWasm-20 compliant token" 7 license = "Apache-2.0" 8 repository = "https://github.com/CosmWasm/cw-plus" 9 homepage = "https://cosmwasm.com" 10 documentation = "https://docs.cosmwasm.com" 11 12 [lib] 13 crate-type = ["cdylib", "rlib"] 14 15 [features] 16 backtraces = ["cosmwasm-std/backtraces"] 17 # use library feature to disable all instantiate/execute/query exports 18 library = [] 19 20 [dependencies] 21 cw-utils = { path = "../../packages/utils", version = "0.13.2" } 22 cw2 = { path = "../../packages/cw2", version = "0.13.2" } 23 cw20 = { path = "../../packages/cw20", version = "0.13.2" } 24 cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" } 25 cosmwasm-std = { version = "1.0.0-beta8" } 26 schemars = "0.8.1" 27 serde = { version = "1.0.103", default-features = false, features = ["derive"] } 28 thiserror = { version = "1.0.23" } 29 30 [dev-dependencies] 31 cosmwasm-schema = { version = "1.0.0-beta8" }