jotdown/tests/afl/Cargo.toml
Noah Hellman 768699d138 optionally use btree maps instead of hash maps
btree maps are deterministic which is useful for fuzzing. hash maps,
however have better performance in our case
2023-02-05 20:36:49 +01:00

12 lines
197 B
TOML

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