jotdown/tests/afl/Cargo.toml
Noah Hellman 8f70f596b9 afl: add main file
for testing that crashes have been resolved

previously, binary of the main crate was used, but targets may have more
validation than simply checking for panics
2023-03-17 18:45:20 +01:00

17 lines
266 B
TOML

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