aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2026-04-23 14:11:14 +0200
committerDaniel Schadt <kingdread@gmx.de>2026-04-23 14:11:14 +0200
commit3f31e03159406b238f6ded01903cbdbc1b3b499a (patch)
tree979a93eda22b4e80087921547000b30aa53a6e37 /Cargo.toml
downloadleona-3f31e03159406b238f6ded01903cbdbc1b3b499a.tar.gz
leona-3f31e03159406b238f6ded01903cbdbc1b3b499a.tar.bz2
leona-3f31e03159406b238f6ded01903cbdbc1b3b499a.zip
initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml26
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