84c1679973
* Add nym- prefix to nymcoconut * Add nym- prefix to validator-client * Add nym- prefix to gateway-requests * Add nym- prefix to mobile-storage * Add nym- prefix to gateway-client * Add nym- prefix to client-core * rustfmt
33 lines
1.2 KiB
TOML
33 lines
1.2 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]
|
|
nym-client-core = { path = "../../../common/client-core", features = ["fs-surb-storage"]}
|
|
nym-crypto = { path = "../../../common/crypto" }
|
|
nym-gateway-client = { path = "../../../common/client-libs/gateway-client" }
|
|
nym-gateway-requests = { path = "../../../gateway/gateway-requests" }
|
|
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 = ["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"
|
|
reqwest = { version = "0.11", features = ["json", "socks"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
nym-bin-common = { path = "../../../common/bin-common" }
|