mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 13:50:31 +00:00
24 lines
402 B
TOML
24 lines
402 B
TOML
[package]
|
|
name = "nora-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
nora-registry = { path = "../nora-registry" }
|
|
|
|
[[bin]]
|
|
name = "fuzz_validation"
|
|
path = "fuzz_targets/fuzz_validation.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_docker_manifest"
|
|
path = "fuzz_targets/fuzz_docker_manifest.rs"
|
|
doc = false
|