mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
8 lines
211 B
Rust
8 lines
211 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
use loro_internal::fuzz::{test_single_client_encode, Action};
|
|
|
|
fuzz_target!(|data: Vec<Action>| {
|
|
// fuzzed code goes here
|
|
test_single_client_encode(data)
|
|
});
|