6e5d0dac1b
* use updated sphinx crate * updated outfox usage of keygen in tests * use x25519 in outfox * remove redundant constructor * adjusted key convertion traits
28 lines
807 B
TOML
28 lines
807 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 = { workspace = true }
|
|
blake3 = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
chacha20 = { workspace = true, features = ["std"] }
|
|
x25519-dalek = { workspace = true }
|
|
chacha20poly1305 = { workspace = true }
|
|
getrandom = { workspace = true, features = ["js"] }
|
|
thiserror = { workspace = true }
|
|
sphinx-packet = { workspace = true }
|
|
rand = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
fastrand = { workspace = true }
|