mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 19:13:57 +00:00
10 lines
188 B
Rust
10 lines
188 B
Rust
|
#![no_main]
|
||
|
|
||
|
use bench_utils::{json::JsonAction, Action};
|
||
|
use examples::json::fuzz;
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
|
||
|
fuzz_target!(|data: Vec<Action<JsonAction>>| {
|
||
|
fuzz(5, &data);
|
||
|
});
|