mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
6 lines
129 B
Rust
6 lines
129 B
Rust
#![no_main]
|
|
|
|
libfuzzer_sys::fuzz_target!(|data: &[u8]| {
|
|
let _ = <fuzz::derive::Scenario as fuzz::Scenario>::fuzz(data);
|
|
});
|