19 lines
443 B
TOML
19 lines
443 B
TOML
[package]
|
|
name = "mt-noise-pq"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
mt-crypto = { path = "../mt-crypto" }
|
|
sha2 = "0.10"
|
|
zeroize = "1.8"
|
|
getrandom = "0.2"
|
|
chacha20poly1305 = "0.10"
|
|
futures = "0.3"
|
|
pin-project-lite = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["net", "io-util", "rt-multi-thread", "macros", "sync", "time"] }
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|