[package] name = "nym-bandwidth-controller" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bip39 = { workspace = true } rand = "0.7.3" thiserror = "1.0" url = "2.2" nym-coconut-interface = { path = "../coconut-interface" } nym-credential-storage = { path = "../credential-storage" } nym-credentials = { path = "../credentials" } nym-crypto = { path = "../crypto", features = ["rand", "asymmetric", "symmetric", "aes", "hashing"] } nym-network-defaults = { path = "../network-defaults" } nym-validator-client = { path = "../client-libs/validator-client", default-features = false } [target."cfg(not(target_arch = \"wasm32\"))".dependencies.nym-validator-client] path = "../client-libs/validator-client" features = ["signing"]