40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "coconut-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nym-coconut-bandwidth-contract-common = { path = "../../common/cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
nym-coconut-dkg-common = { path = "../../common/cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-multisig-contract-common = { path = "../../common/cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-group-contract-common = { path = "../../common/cosmwasm-smart-contracts/group-contract" }
|
|
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-storage = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
cw-utils = { workspace = true }
|
|
|
|
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
|
|
bs58 = "0.4.0"
|
|
schemars = "0.8"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
|
|
nym-coconut-bandwidth = { path = "../coconut-bandwidth" }
|
|
nym-coconut-dkg = { path = "../coconut-dkg" }
|
|
cw-multi-test = { workspace = true }
|
|
cw3-flex-multisig = { path = "../multisig/cw3-flex-multisig" }
|
|
cw4-group = { path = "../multisig/cw4-group" }
|
|
|
|
rand_chacha = "0.3"
|
|
|
|
[[test]]
|
|
name = "coconut-test"
|
|
path = "src/tests.rs"
|