aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2026-04-28 17:59:45 +0200
committerDaniel Schadt <kingdread@gmx.de>2026-04-28 17:59:45 +0200
commitefacfd58a85f227f15178ede1658cef5072314ae (patch)
tree63ec885bcacf770b9d804838e6ef487ab3e9037d /fuzz/Cargo.toml
parent8c54e253451cc4c6578f86db25a057fbf702fd4b (diff)
downloadleona-0.1.0.tar.gz
leona-0.1.0.tar.bz2
leona-0.1.0.zip
add fuzz targetv0.1.0
Diffstat (limited to 'fuzz/Cargo.toml')
-rw-r--r--fuzz/Cargo.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml
new file mode 100644
index 0000000..b87b441
--- /dev/null
+++ b/fuzz/Cargo.toml
@@ -0,0 +1,25 @@
+[package]
+name = "leona-fuzz"
+version = "0.0.0"
+publish = false
+edition = "2024"
+
+[package.metadata]
+cargo-fuzz = true
+
+[dependencies]
+arbitrary = { version = "1.4.1", features = ["derive"] }
+chacha20 = { version = "0.10.0", features = ["cipher"] }
+libfuzzer-sys = "0.4"
+sha2 = "0.11.0"
+typenum = "1.20.0"
+
+[dependencies.leona]
+path = ".."
+
+[[bin]]
+name = "fuzz_target_1"
+path = "fuzz_targets/fuzz_target_1.rs"
+test = false
+doc = false
+bench = false