-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (37 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[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-wasm-tools",
"crates/generic-btree",
]
resolver = "2"
# Use the in-tree fork of generic-btree (loro-dev maintains it). This redirects
# every `generic-btree` dependency in the graph to the workspace crate.
[patch.crates-io]
generic-btree = { path = "crates/generic-btree" }
[workspace.dependencies]
enum_dispatch = "0.3.11"
enum-as-inner = "0.6.0"
rustc-hash = "2.1.1"
tracing = { version = "0.1" }
serde_columnar = { version = "0.3.14", default-features = false }
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"