Add fuzzing
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
e0e84ede1c
commit
fa1582f3ad
6 changed files with 327 additions and 0 deletions
21
fuzz/Cargo.toml
Normal file
21
fuzz/Cargo.toml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue