1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00
parser/fuzz/Cargo.toml
2022-12-13 19:23:19 +01:00

31 lines
No EOL
493 B
TOML

[package]
name = "tf-demo-parser-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4.5"
[dependencies.tf-demo-parser]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_target_1"
path = "fuzz_targets/fuzz_target_1.rs"
[[bin]]
name = "real_inputs"
path = "fuzz_targets/real_inputs.rs"
[profile.dev]
opt-level = 2