33 lines
974 B
TOML
33 lines
974 B
TOML
[package]
|
|
name = "mixnet-vesting-integration-tests"
|
|
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]
|
|
|
|
# cosmwasm dependencies
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-storage = { workspace = true }
|
|
cw-multi-test = { workspace = true }
|
|
|
|
# contracts dependencies
|
|
nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
|
|
nym-mixnet-contract = { path = "../mixnet" }
|
|
nym-vesting-contract = { path = "../vesting" }
|
|
|
|
# other local dependencies
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric", "rand"] }
|
|
|
|
# external dependencies
|
|
rand_chacha = "0.3"
|
|
|
|
[[test]]
|
|
name = "mixnet-vesting-test"
|
|
path = "src/tests.rs"
|