833114372a
* wip: changes to surb logic + stronger db typing * surb invalidation logic * chore: remove unused deps * resolving todos * a lot of additional bugfixes * 1.88 clippy * wasm fixes * wasm clippy * wallet clippy * wait for epoch end when setting up new network * split ReplyController into Sender and Receiver for easier reasoning * additional reply surbs improvements includes, but is not limited to: unconditionally reseting sender tag on restart, limiting number of surb re-requests, resetting stale surbs on load * fixed calculation of number of removed surbs * add additional calculated field to key rotation info * DBG: 'request_reply_surbs_for_queue_clearing' temp logs * fixes for silly mistakes * conditionally reduce log severity
55 lines
2.4 KiB
TOML
55 lines
2.4 KiB
TOML
[package]
|
|
name = "testnet-manager"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bip39.workspace = true
|
|
bs58.workspace = true
|
|
console = { workspace = true }
|
|
cw-utils.workspace = true
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
indicatif = { workspace = true }
|
|
humantime = { workspace = true }
|
|
rand.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "time"] }
|
|
tempfile = { workspace = true }
|
|
thiserror.workspace = true
|
|
time = { workspace = true, features = ["parsing", "formatting"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "process"] }
|
|
toml = { workspace = true }
|
|
tracing.workspace = true
|
|
url.workspace = true
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
|
|
nym-bin-common = { path = "../../../common/bin-common", features = ["output_format", "basic_tracing"] }
|
|
nym-crypto = { path = "../../../common/crypto", features = ["asymmetric", "rand", "serde"] }
|
|
nym-config = { path = "../../../common/config" }
|
|
nym-validator-client = { path = "../../../common/client-libs/validator-client" }
|
|
nym-compact-ecash = { path = "../../../common/nym_offline_compact_ecash" }
|
|
dkg-bypass-contract = { path = "dkg-bypass-contract", default-features = false }
|
|
|
|
# contracts:
|
|
nym-mixnet-contract-common = { path = "../../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-contracts-common = { path = "../../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
nym-vesting-contract-common = { path = "../../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-group-contract-common = { path = "../../../common/cosmwasm-smart-contracts/group-contract" }
|
|
nym-ecash-contract-common = { path = "../../../common/cosmwasm-smart-contracts/ecash-contract" }
|
|
nym-coconut-dkg-common = { path = "../../../common/cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-multisig-contract-common = { path = "../../../common/cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-pemstore = { path = "../../../common/pemstore" }
|
|
|
|
|
|
[build-dependencies]
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|