mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-24 12:20:06 +00:00
4414053a82
* chore: init ffi * feat: impl doc and LoroList * feat: impl containers * feat: unknown container * feat: event ffi * chore: clean * feat: ffi undo manager * chore: cargo fix * chore: cargo fix * fix: ffi value or container * fix: ffi arc * fix: is attached for movable list * bk * feat: all LoroDoc func * feat: refine vv * feat: ffi frontiers * feat: ffi awareness * fix: merge
34 lines
761 B
TOML
34 lines
761 B
TOML
[workspace]
|
|
members = [
|
|
"crates/loro",
|
|
"crates/examples",
|
|
"crates/bench-utils",
|
|
"crates/rle",
|
|
"crates/loro-common",
|
|
"crates/loro-internal",
|
|
"crates/loro-wasm",
|
|
"crates/fuzz",
|
|
"crates/fractional_index",
|
|
"crates/dev-utils",
|
|
"crates/delta",
|
|
"crates/kv-store",
|
|
"crates/loro-ffi",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
enum_dispatch = "0.3.11"
|
|
enum-as-inner = "0.6.0"
|
|
fxhash = "0.2.1"
|
|
tracing = { version = "0.1" }
|
|
serde_columnar = { version = "0.3.10" }
|
|
serde_json = "1.0"
|
|
thiserror = "1"
|
|
smallvec = { version = "1.8.0", features = ["serde"] }
|
|
itertools = "0.12.1"
|
|
serde = "1"
|
|
bytes = "1"
|
|
once_cell = "1.18.0"
|
|
xxhash-rust = { version = "0.8.12", features = ["xxh32"] }
|
|
ensure-cov = "0.1.0"
|
|
either = "1.13.0"
|