c2e335557e
* helper wrapper for stream-sink channel * similar helper for async read/write * example tests and clippy
36 lines
956 B
TOML
36 lines
956 B
TOML
[package]
|
|
name = "nym-noise"
|
|
version = "0.1.0"
|
|
authors = ["Simon Wicky <simon@nymtech.net>"]
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arc-swap = { workspace = true }
|
|
bytes = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
pin-project = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
snow = { workspace = true }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
strum_macros = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["net", "io-util", "time"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
# internal
|
|
nym-crypto = { path = "../crypto" }
|
|
nym-noise-keys = { path = "keys" }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
rand_chacha = { workspace = true }
|
|
nym-crypto = { path = "../crypto", features = ["rand"] }
|
|
nym-test-utils = { path = "../test-utils" }
|
|
|
|
|
|
[lints]
|
|
workspace = true
|