mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 11:06:14 +00:00
b8eb57f4a5
* refactor: add idlp and add lamport info to snapshot enc * fix: fix warnings * fix: idlp err due to incorrect merge * fix: comments * test: fix fuzz
6 lines
180 B
Rust
6 lines
180 B
Rust
#![no_main]
|
|
|
|
use bench_utils::{draw::DrawAction, Action};
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|actions: Vec<Action<DrawAction>>| examples::draw::fuzz(5, 100, &actions));
|