4af70ef255
* Lock files * Add flag to disable cover traffic * Add flag to disable per hop delays * Add flag to enable mixed size packets * Add meta flag to set medium speed * Special case zero averge hop delay to be exactly zero * Extract out generate_hop_delays function
23 lines
753 B
TOML
23 lines
753 B
TOML
[package]
|
|
name = "nym-sphinx-cover"
|
|
version = "0.1.0"
|
|
description = "Sphinx packets used as cover traffic"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
thiserror = "1.0.37"
|
|
|
|
nym-crypto = { path = "../../crypto" }
|
|
nym-sphinx-acknowledgements = { path = "../acknowledgements" }
|
|
nym-sphinx-addressing = { path = "../addressing" }
|
|
nym-sphinx-chunking = { path = "../chunking" }
|
|
nym-sphinx-forwarding = { path = "../forwarding" }
|
|
nym-sphinx-params = { path = "../params" }
|
|
nym-sphinx-routing = { path = "../routing" }
|
|
nym-sphinx-types = { path = "../types" }
|
|
nym-topology = { path = "../../topology" }
|