mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
[package]
|
|
name = "fuzz"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
|
|
|
|
[dependencies]
|
|
askama = { path = "../../askama", features = ["serde_json"] }
|
|
askama_parser = { path = "../../askama_parser" }
|
|
askama_derive = { path = "../../askama_derive", default-features = false, features = ["serde_json", "std", "urlencode"] }
|
|
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
html-escape = "0.2.13"
|
|
libfuzzer-sys = "0.4.7"
|
|
prettyplease = "0.2.32"
|
|
proc-macro2 = { version = "1.0.95", default-features = false }
|
|
quote = { version = "1.0.40", default-features = false }
|
|
syn = { version = "2.0.101", default-features = false, features = ["full"] }
|
|
thiserror = "2.0.3"
|
|
unicode-ident = "=1.0.18"
|
|
|
|
[[bin]]
|
|
name = "all"
|
|
path = "fuzz_targets/all.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "derive"
|
|
path = "fuzz_targets/derive.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
|