bbb46ebd90
* updated 'tokio' to 1.24.1 in the whole codebase * ibid for 'tokio-stream' * ibid for 'tokio-util' * Removed lock file from verify-signature example
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "mixnode-common"
|
|
version = "0.1.0"
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = "1.0"
|
|
futures = "0.3"
|
|
humantime-serde = "1.0"
|
|
log = "0.4"
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.24.1", features = ["time", "macros", "rt", "net", "io-util"] }
|
|
tokio-util = { version = "0.7.4", features = ["codec"] }
|
|
url = "2.2"
|
|
thiserror = "1.0.37"
|
|
|
|
crypto = { path = "../crypto" }
|
|
network-defaults = { path = "../network-defaults" }
|
|
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" }
|
|
task = { path = "../task" }
|
|
validator-client = { path = "../client-libs/validator-client", features = ["nyxd-client"]}
|
|
version-checker = { path = "../version-checker" }
|