mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 11:06:14 +00:00
9047065843
* fix: should transform checkout event * chore: update fuzz dep * chore: add pos to error info * fix: clear undo/redo stack when checkingout * test: update fuzz dep * test: a new failed test case * fix: tree transform * chore: fuzz * chore: add log * chore: add more logs * fix: compose err * chore: fuzz test dep * test: a failed tree case * fix: undo tree event * fix: do not compare tree position in fuzz * fix: fuzz rev * test: a failed tree case * fix: add tree compose * chore: add comment * chore: fuzz * fix: test * fix: tree transform * fix: tree transform index * fix: sort tree index * chore: fuzz * fix: undo/redo remote change effect compose * bk * fix: tree undo redo (#385) * fix: event hint none * chore: fuzz version * ci: fuzz * bk: weird err * fix: type err * fix: fractional index between * fix: wasm counter feature * test: a new failed case * fix: recursively create child nodes * fix: filter empty event * bk * bk * fix: tree undo redo remap * chore: clean * bk * fix: tree need remap first * fix: tree undo effect * fix: tree diff calc * fix: tree fuzz check eq func * fix: remove EventHint None * chore: cargo fix * fix: tree uncreate * fix: fuzz tree assert only structure * refactor: rename methods * fix: movable tree apply delta * fix: another movable list issue * chore: fuzz only check 1 actor's history --------- Co-authored-by: Leon Zhao <leeeon233@gmail.com>
29 lines
845 B
TOML
29 lines
845 B
TOML
[package]
|
|
name = "fuzz"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
loro = { path = "../loro", features = ["counter"], package = "loro" }
|
|
loro-without-counter = { git = "https://github.com/loro-dev/loro.git", rev = "39caa6cedf66d8f6c77f0886e70ec1270a96bd1a", package = "loro", default-features = false }
|
|
fxhash = { workspace = true }
|
|
enum_dispatch = { workspace = true }
|
|
enum-as-inner = { workspace = true }
|
|
tracing = { workspace = true }
|
|
itertools = { workspace = true }
|
|
arbitrary = "1"
|
|
tabled = "0.10"
|
|
rand = "0.8.5"
|
|
serde_json = "1"
|
|
|
|
[dev-dependencies]
|
|
ctor = "0.2"
|
|
arbtest = "^0.2.0"
|
|
dev-utils = { path = "../dev-utils" }
|
|
tracing-subscriber = "0.3.18"
|
|
tracing-chrome = "0.7.1"
|
|
color-backtrace = "0.6.1"
|
|
serde_json = "1"
|