fc98c497b4
* added new dkg execute methods for ownership transfer and announce address update * cherry-pick TestableNymContract for the dkg contract from #5091 * tests * schema fixes * removed old queued migrations
49 lines
1.8 KiB
TOML
49 lines
1.8 KiB
TOML
[package]
|
|
name = "nym-coconut-dkg"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "schema"
|
|
required-features = ["schema-gen"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
nym-coconut-dkg-common = { path = "../../common/cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
nym-contracts-common-testing = { path = "../../common/cosmwasm-smart-contracts/contracts-common-testing", optional = true }
|
|
nym-group-contract-common = { path = "../../common/cosmwasm-smart-contracts/group-contract", optional = true }
|
|
|
|
cosmwasm-schema = { workspace = true, optional = true }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
cw-storage-plus = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
cw2 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
cw3-flex-multisig = { path = "../multisig/cw3-flex-multisig", features = ["testable-cw3-contract"], optional = true }
|
|
cw4-group = { path = "../multisig/cw4-group", features = ["testable-cw4-contract"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
easy-addr = { path = "../../common/cosmwasm-smart-contracts/easy_addr" }
|
|
nym-group-contract-common = { path = "../../common/cosmwasm-smart-contracts/group-contract" }
|
|
cw-multi-test = { workspace = true }
|
|
cw4-group = { path = "../multisig/cw4-group" }
|
|
|
|
[features]
|
|
schema-gen = ["nym-coconut-dkg-common/schema", "cosmwasm-schema"]
|
|
testable-dkg-contract = ["nym-contracts-common-testing", "cw3-flex-multisig/testable-cw3-contract", "nym-group-contract-common", "cw4-group/testable-cw4-contract"]
|
|
|
|
[lints]
|
|
workspace = true
|