[package] name = "abstract-cw4-group" version = "3.0.0" authors = ["Ethan Frey "] edition = "2021" description = "Simple cw4 implementation of group membership controlled by admin " 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] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] # use library feature to disable all instantiate/execute/query exports library = [] [dependencies] cosmwasm-schema = { version = "1.4.0" } cw-utils = "1.0.1" abstract-cw2 = { version = "1.2.2", path = "../../packages/cw2" } abstract-cw4 = { version = "1.2.2", path = "../../packages/cw4" } cw-controllers = { version = "1.1.2", path = "../../packages/controllers" } cw-storage-plus = "1.1.0" cosmwasm-std = { version = "1.4.0" } schemars = "0.8.15" serde = { version = "1.0.188", default-features = false, features = ["derive"] } thiserror = { version = "1.0.49" } cw-orch = { workspace = true }