a8299e867d
* WIP * WIP for time measurement * In theory working sender and listener * Further additions + main.rs for local testing * Further improvements + config builder * Initial integration into mixnode * Verifying mixnode version * 1.52+ clipy warning * 1.54 nightly clippy fixes * Changed HTTP Api to bind to the same ip as used for mix packets * Changed measurements to instead write to shared object * Required dependencies * Connecting with the http api * Updated mixnode common rand dependency
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "mixnode-common"
|
|
version = "0.1.0"
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = "1.0"
|
|
crypto = { path = "../crypto" }
|
|
dashmap = "4.0"
|
|
futures = "0.3"
|
|
humantime-serde = "1.0"
|
|
log = "0.4"
|
|
nonexhaustive-delayqueue = { path = "../nonexhaustive-delayqueue" }
|
|
nymsphinx-acknowledgements = { path = "../nymsphinx/acknowledgements" }
|
|
nymsphinx-addressing = { path = "../nymsphinx/addressing" }
|
|
nymsphinx-forwarding = { path = "../nymsphinx/forwarding" }
|
|
nymsphinx-framing = { path = "../nymsphinx/framing" }
|
|
nymsphinx-params = { path = "../nymsphinx/params" }
|
|
nymsphinx-types = { path = "../nymsphinx/types" }
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.4", features = ["time", "macros", "rt", "net", "io-util"] }
|
|
tokio-util = { version = "0.6", features = ["codec"] }
|
|
validator-client-rest = { path = "../client-libs/validator-client-rest" }
|
|
version-checker = { path = "../version-checker" }
|