[package] name = "nym-mixnode-common" version = "0.1.0" authors = ["Jędrzej Stuczyński "] edition = "2021" license.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 = { path = "../crypto" } nym-network-defaults = { path = "../network-defaults" } nym-sphinx-acknowledgements = { path = "../nymsphinx/acknowledgements" } nym-sphinx-addressing = { path = "../nymsphinx/addressing" } nym-sphinx-forwarding = { path = "../nymsphinx/forwarding" } nym-sphinx-framing = { path = "../nymsphinx/framing" } nym-sphinx-params = { path = "../nymsphinx/params" } nym-sphinx-types = { path = "../nymsphinx/types" } nym-task = { path = "../task" } nym-validator-client = { path = "../client-libs/validator-client" } nym-bin-common = { path = "../bin-common" } nym-metrics = { path = "../nym-metrics" } nym-node-http-api = { path = "../../nym-node/nym-node-http-api" }