43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-mixnode-common"
|
|
description = "Common crate for Nym Mix Nodes"
|
|
version.workspace = true
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
futures = { workspace = true }
|
|
humantime-serde = { workspace = true }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = [
|
|
"time",
|
|
"macros",
|
|
"rt",
|
|
"net",
|
|
"io-util",
|
|
] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
url = { workspace = true }
|
|
time.workspace = true
|
|
thiserror = { workspace = true }
|
|
|
|
nym-crypto = { workspace = true, features = ["asymmetric"] }
|
|
nym-network-defaults = { workspace = true }
|
|
nym-sphinx-acknowledgements = { workspace = true }
|
|
nym-sphinx-addressing = { workspace = true }
|
|
nym-sphinx-forwarding = { workspace = true }
|
|
nym-sphinx-framing = { workspace = true }
|
|
nym-sphinx-params = { workspace = true }
|
|
nym-sphinx-types = { workspace = true }
|
|
nym-task = { workspace = true }
|
|
nym-metrics = { workspace = true }
|