860a69b246
* Ability to send sphinx packets of different sizes + more efficient decoding * Closing connection on connection corruption * Missing semicolons * Missing license notices * Default for packetsize
17 lines
424 B
TOML
17 lines
424 B
TOML
[package]
|
|
name = "mixnet-client"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
log = "0.4.8"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
tokio-util = { version = "0.3.1", features = ["codec"] }
|
|
|
|
# internal
|
|
nymsphinx = {path = "../../nymsphinx" }
|