[package] name = "cw4-stake" version.workspace = true authors = ["Ethan Frey "] edition = "2021" description = "CW4 implementation of group based on staked tokens" license = "Apache-2.0" repository = "https://github.com/CosmWasm/cw-plus" homepage = "https://cosmwasm.com" documentation = "https://docs.cosmwasm.com" exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. "artifacts/*", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib", "rlib"] [features] # use library feature to disable all instantiate/execute/query exports library = [] [dependencies] cosmwasm-schema = { workspace = true } cw-utils = { workspace = true } cw2 = { workspace = true } cw4 = { workspace = true } cw20 = { workspace = true } cw-controllers = { workspace = true } cw-storage-plus = { workspace = true } cosmwasm-std = { workspace = true } schemars = { workspace = true } serde = { workspace = true } thiserror = { workspace = true } [dev-dependencies] easy-addr = { workspace = true }