22 lines
327 B
TOML
22 lines
327 B
TOML
[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 = ".."
|
|
features = ["unstable-pub"]
|
|
|
|
[[bin]]
|
|
name = "fuzz_target_1"
|
|
path = "fuzz_targets/fuzz_target_1.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|