27 lines
810 B
TOML
27 lines
810 B
TOML
[package]
|
|
name = "nym-service-providers-common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
nym-bin-common = { path = "../../common/bin-common" }
|
|
nym-sphinx-anonymous-replies = { path = "../../common/nymsphinx/anonymous-replies" }
|
|
|
|
async-trait = { workspace = true }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"]}
|
|
serde_json = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# for the control requests example
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
|
|
nym-sdk = { path = "../../sdk/rust/nym-sdk" }
|
|
nym-socks5-requests = { path = "../../common/socks5/requests" }
|
|
|