37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-coconut-dkg"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# 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" }
|
|
|
|
cosmwasm-schema = { workspace = true, optional = true }
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-storage = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
cw2 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
cw-multi-test = { workspace = true }
|
|
cw4-group = { path = "../multisig/cw4-group" }
|
|
nym-group-contract-common = { path = "../../common/cosmwasm-smart-contracts/group-contract" }
|
|
|
|
[features]
|
|
schema-gen = ["nym-coconut-dkg-common/schema", "cosmwasm-schema"]
|
|
|