1ad97adc7c
* Replace expect with error * Move PersistentStorage in separate file * Add in-memory cred manager * Make wasm and mobile build * Unify wasm and mobile cred storage * Network defaults has mainnet default * Add network_details to SDK * Move BandwidthController in its own crate * Move out credential into lib crate * Remove nyxd arg in credential binary * Use acquire cred in sdk * Add example file, in sandbox * Mobile lock file * Update changelog * Clearer builder methods and more documentation for them * Sign only amount, without denom * Toggle credentials mode on when enabled
25 lines
834 B
TOML
25 lines
834 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 = ["nyxd-client"]
|