8ba58ba11e
* grand Noise squaheroo * fix merge conflicts and adapt code for the key rotation changes (#5824) * remove file that should have been ignored
30 lines
852 B
TOML
30 lines
852 B
TOML
[package]
|
|
name = "nym-mixnet-client"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dashmap = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true, features = ["time", "sync"] }
|
|
tokio-util = { workspace = true, features = ["codec"], optional = true }
|
|
tokio-stream = { workspace = true }
|
|
|
|
# internal
|
|
nym-noise = { path = "../../nymnoise" }
|
|
nym-sphinx = { path = "../../nymsphinx" }
|
|
nym-task = { path = "../../task", optional = true }
|
|
|
|
[features]
|
|
default = ["client"]
|
|
client = ["tokio-util", "nym-task", "tokio/net", "tokio/rt"]
|
|
|
|
[dev-dependencies]
|
|
nym-crypto = { path = "../../crypto" }
|
|
rand = { workspace = true }
|