mayo/Cargo.toml

17 lines
394 B
TOML
Raw Normal View History

2023-05-21 15:05:39 -04:00
[package]
name = "mayo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tiny-keccak = { version = "2.0", features = ["shake"] }
2023-05-27 00:04:40 -04:00
aes = { version = "0.8.2" }
rand = { version = "0.8.5" }
2023-05-21 15:05:39 -04:00
nalgebra = { version = "0.32.2", optional = true }
[features]
default = ["naive"]
naive = ["dep:nalgebra"]