19 lines
568 B
TOML
19 lines
568 B
TOML
[package]
|
|
name = "mixnet-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tracing = "0.1.37"
|
|
tokio = { version = "1.29.1", features = ["net"] }
|
|
sphinx-packet = "0.1.0"
|
|
nym-sphinx = { package = "nym-sphinx", git = "https://github.com/nymtech/nym", tag = "v1.1.22" }
|
|
# Using an older version, since `nym-sphinx` depends on `rand` v0.7.3.
|
|
rand = "0.7.3"
|
|
mixnet-protocol = { path = "../protocol" }
|
|
mixnet-topology = { path = "../topology" }
|
|
mixnet-util = { path = "../util" }
|
|
futures = "0.3.28"
|
|
thiserror = "1"
|