Add fuzzing

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-03-09 15:20:02 +01:00
parent e0e84ede1c
commit fa1582f3ad
6 changed files with 327 additions and 0 deletions

21
fuzz/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "nomo-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.nomo]
path = ".."
[[bin]]
name = "fuzz_target_1"
path = "fuzz_targets/fuzz_target_1.rs"
test = false
doc = false
bench = false