46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "cw3-flex-multisig"
|
|
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
|
|
version = "2.0.0"
|
|
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/CosmWasm/cw-plus"
|
|
homepage = "https://cosmwasm.com"
|
|
documentation = "https://docs.cosmwasm.com"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "schema"
|
|
required-features = ["cosmwasm-schema"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
cw-utils = { workspace = true }
|
|
cw2 = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw3-fixed-multisig = { workspace = true, features = ["library"] }
|
|
cw4 = { workspace = true }
|
|
cw20 = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
cosmwasm-schema = { workspace = true, optional = true }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
nym-group-contract-common = { workspace = true }
|
|
nym-multisig-contract-common = { workspace = true }
|
|
nym-contracts-common = { workspace = true }
|
|
nym-contracts-common-testing = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
easy-addr = { workspace = true }
|
|
cw4-group = { workspace = true }
|
|
cw-multi-test = { workspace = true }
|
|
cw20-base = { workspace = true }
|
|
|
|
[features]
|
|
# use library feature to disable all instantiate/execute/query exports
|
|
library = []
|
|
testable-cw3-contract = ["nym-contracts-common-testing"]
|