mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 21:43:59 +00:00
10 lines
203 B
Rust
10 lines
203 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use loro_internal::text::{apply, Action};
|
|
|
|
fuzz_target!(|data: Vec<Action>| {
|
|
// fuzzed code goes here
|
|
let mut data = data;
|
|
apply(&mut data);
|
|
});
|