jotdown/tests/afl/Cargo.toml
Noah Hellman 0d884a65d5 afl: add debug feature
leave out debug prints when actually fuzzing to increase fuzz
performance
2023-03-17 18:45:20 +01:00

26 lines
372 B
TOML

[package]
name = "jotdown-afl"
version = "0.1.0"
edition = "2021"
default-run = "main"
[dependencies]
afl = "0.11"
jotdown = { path = "../../", features = ["deterministic"] }
html5ever = "0.26"
[[bin]]
name = "main"
path = "src/main.rs"
[[bin]]
name = "parse"
path = "src/parse.rs"
[[bin]]
name = "html"
path = "src/html.rs"
[features]
default = ["debug"]
debug = []