28 lines
671 B
TOML
28 lines
671 B
TOML
[package]
|
|
name = "nym-outfox"
|
|
version = "0.1.0"
|
|
description = "Outfox package format"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rayon = "1.5.1"
|
|
blake3 = "1.3"
|
|
zeroize = "1.5"
|
|
chacha20 = { version = "0.9.0", features = ["std"] }
|
|
curve25519-dalek = "3.2"
|
|
chacha20poly1305 = "0.10.1"
|
|
getrandom = { workspace = true, features = ["js"] }
|
|
thiserror = { workspace = true }
|
|
sphinx-packet = "0.1.0"
|
|
rand = "0.7.3"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4"
|
|
fastrand = "1.8"
|