jotdown/tests/afl/Cargo.toml

31 lines
434 B
TOML
Raw Normal View History

2023-02-01 11:44:42 -05:00
[package]
name = "jotdown-afl"
version = "0.1.0"
edition = "2021"
default-run = "main"
2023-02-01 11:44:42 -05:00
[dependencies]
afl = "0.11"
jotdown = { path = "../../", features = ["deterministic"] }
html5ever = "0.26"
2023-02-01 11:44:42 -05:00
[[bin]]
name = "main"
path = "src/main.rs"
2023-02-01 11:44:42 -05:00
[[bin]]
2023-03-12 14:51:38 -04:00
name = "parse"
path = "src/parse.rs"
[[bin]]
name = "parse_balance"
path = "src/parse_balance.rs"
[[bin]]
name = "html"
path = "src/html.rs"
[features]
default = ["debug"]
debug = []