diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0c500ff --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "leona" +version = "0.1.0" +edition = "2024" + +[dependencies] +blake2 = "0.11.0-rc.6" +cipher = "0.5.1" +crypto-common = "0.2.1" +digest = { version = "0.11.2", features = ["mac"] } +hybrid-array = { version = "0.4.10", features = ["zerocopy"] } +thiserror = { version = "2.0.18", default-features = false } +typenum = "1.20.0" +zerocopy = "0.8.48" + +[dev-dependencies] +aes = "0.9.0" +chacha20 = { version = "0.10.0", features = ["cipher"] } +criterion = "0.8.2" +ctr = "0.10.0" +hmac = "0.13.0" +sha2 = "0.11.0" + +[[bench]] +name = "leona" +harness = false |
