[package] name = "cw20-base" version.workspace = true authors = ["Ethan Frey "] edition = "2021" description = "Basic implementation of a CosmWasm-20 compliant token" license = "Apache-2.0" repository = "https://github.com/CosmWasm/cw-plus" homepage = "https://cosmwasm.com" documentation = "https://docs.cosmwasm.com" [lib] crate-type = ["cdylib", "rlib"] [features] # use library feature to disable all instantiate/execute/query exports library = [] [dependencies] cosmwasm-schema = { workspace = true } cw2 = { workspace = true } cw20 = { workspace = true } cw-storage-plus = { workspace = true } cosmwasm-std = { workspace = true } schemars = { workspace = true } semver = { workspace = true } serde = { workspace = true } thiserror = { workspace = true } [dev-dependencies] cw-multi-test = { workspace = true } cw-utils = { workspace = true }