516561dcf9
* separated signing and nyxd-client features * updated cosmrs to the most recent version * using tendermint_rpc directly for the Client trait * fixed rest of the codebase * removed nyxd-client feature * export more types * clippy that seems to have been skipped in makefile
24 lines
829 B
TOML
24 lines
829 B
TOML
[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"]
|