37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "nym-mixnet-client"
|
|
description = "Client for Mix Node <> Mix Node & Mix Node <> Gateway communication"
|
|
version.workspace = true
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = 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 = { workspace = true }
|
|
nym-sphinx = { workspace = true }
|
|
nym-task = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["client"]
|
|
client = ["tokio-util", "nym-task", "tokio/net", "tokio/rt"]
|
|
|
|
[dev-dependencies]
|
|
nym-crypto = { workspace = true }
|
|
rand = { workspace = true }
|