mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
43 lines
685 B
TOML
43 lines
685 B
TOML
[package]
|
|
name = "fuzz"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
rinja = { path = "../../rinja" }
|
|
rinja_parser = { path = "../../rinja_parser" }
|
|
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
html-escape = "0.2.13"
|
|
libfuzzer-sys = "0.4.7"
|
|
thiserror = "1.0.63"
|
|
|
|
[[bin]]
|
|
name = "all"
|
|
path = "fuzz_targets/all.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "filters"
|
|
path = "fuzz_targets/filters.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "html"
|
|
path = "fuzz_targets/html.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "parser"
|
|
path = "fuzz_targets/parser.rs"
|
|
test = false
|
|
doc = false
|