mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-22 21:07:43 +00:00
df0e061dbf
* feat: add allocation algorithm * test: add test * perf: split struct for effective multiplex * perf: code style * test: add dfs check * fix: rename gen to gen_graph * fix: problem of multiple starting points * perf: use fast log * chore: rename `gen` to `generate` * perf: use fxhash * feat: lamport split algorithm * feat: lamport split done * fix: remove min import * feat: add dfs test * feat: dag * feta: fix fuzz * feat: add test_alloc_fuzz * feat: add bfs algorithm * feat: bfs * test: add fuzz * test: chang fuzz rule * chore: clean up --------- Co-authored-by: Zixuan Chen <remch183@outlook.com>
32 lines
520 B
TOML
32 lines
520 B
TOML
[package]
|
|
name = "loro-internal-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.loro-internal]
|
|
path = ".."
|
|
features = ["test_utils"]
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "import"
|
|
path = "fuzz_targets/import.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "alloc_tree"
|
|
path = "fuzz_targets/alloc_tree.rs"
|
|
test = false
|
|
doc = false
|