Files
nym/sdk/rust/nym-sdk/Cargo.toml
T
Jon Häggblad 4587d5da26 Add nym- prefix to network-defaults (#3069)
* network-defaults: update cargo metadata

* Add nym- prefix to network-defaults crate

* Some manual updating

* rustfmt
2023-02-21 14:26:28 +01:00

30 lines
1010 B
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]
client-core = { path = "../../../clients/client-core", features = ["fs-surb-storage"]}
nym-crypto = { path = "../../../common/crypto" }
gateway-client = { path = "../../../common/client-libs/gateway-client" }
gateway-requests = { path = "../../../gateway/gateway-requests" }
nym-network-defaults = { path = "../../../common/network-defaults" }
nym-sphinx = { path = "../../../common/nymsphinx" }
nym-task = { path = "../../../common/task" }
validator-client = { path = "../../../common/client-libs/validator-client", features = ["nyxd-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]
pretty_env_logger = "0.4.0"
tokio = { version = "1", features = ["full"] }
nym-bin-common = { path = "../../../common/bin-common" }