mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
7 lines
120 B
Rust
7 lines
120 B
Rust
|
#![no_main]
|
||
|
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
use loro_delta_fuzz::{run, Op};
|
||
|
|
||
|
fuzz_target!(|ops: Vec<Op>| run(ops, 5));
|