Files
nym/sdk/rust/nym-sdk/Cargo.toml
T
Jędrzej Stuczyński 516561dcf9 Feature/wasm nyxd client (#3708)
* 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
2023-07-26 15:49:45 +01:00

38 lines
1.4 KiB
TOML

[package]
name = "nym-sdk"
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 }
nym-client-core = { path = "../../../common/client-core", features = ["fs-surb-storage"]}
nym-crypto = { path = "../../../common/crypto" }
nym-gateway-requests = { path = "../../../gateway/gateway-requests" }
nym-bandwidth-controller = { path = "../../../common/bandwidth-controller" }
nym-credentials = { path = "../../../common/credentials" }
nym-credential-storage = { path = "../../../common/credential-storage" }
nym-network-defaults = { path = "../../../common/network-defaults" }
nym-sphinx = { path = "../../../common/nymsphinx" }
nym-task = { path = "../../../common/task" }
nym-topology = { path = "../../../common/topology" }
nym-socks5-client-core = { path = "../../../common/socks5-client-core" }
nym-validator-client = { path = "../../../common/client-libs/validator-client", features = ["http-client"] }
futures = "0.3"
log = { workspace = true }
rand = { version = "0.7.3" }
tap = "1.0.1"
thiserror = "1.0.38"
url = "2.2"
toml = "0.5.10"
[dev-dependencies]
dotenvy = { workspace = true }
pretty_env_logger = "0.4.0"
reqwest = { version = "0.11", features = ["json", "socks"] }
thiserror = { workspace = true }
tokio = { version = "1", features = ["full"] }
nym-bin-common = { path = "../../../common/bin-common" }