mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-02 15:25:19 +00:00
6 lines
127 B
Rust
6 lines
127 B
Rust
#![no_main]
|
|
|
|
libfuzzer_sys::fuzz_target!(|data: &[u8]| {
|
|
let _ = <fuzz::html::Scenario as fuzz::Scenario>::fuzz(data);
|
|
});
|