-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
38 lines (36 loc) · 1.26 KB
/
Cargo.toml
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
[workspace]
members = [
"collab",
"collab-database",
"collab-user",
"collab-entity",
"collab-document",
"collab-folder",
"collab-plugins",
"collab-importer",
]
resolver = "2"
[workspace.dependencies]
collab = { path = "collab" }
collab-database = { path = "collab-database" }
collab-plugins = { path = "collab-plugins" }
collab-user = { path = "collab-user" }
collab-entity = { path = "collab-entity" }
collab-document = { path = "collab-document" }
collab-folder = { path = "collab-folder" }
collab-importer = { path = "collab-importer" }
yrs = { version = "0.21.3", features = ["sync"] }
anyhow = "1.0.94"
thiserror = "1.0.39"
serde = { version = "1.0.157", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.38", features = ["sync"] }
bytes = "1.5.0"
tracing = "0.1.22"
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
async-trait = "0.1"
arc-swap = { version = "1.7" }
[patch.crates-io]
# We're using a specific commit here because rust-rocksdb doesn't publish the latest version that includes the memory alignment fix.
# For more details, see https://github.com/rust-rocksdb/rust-rocksdb/pull/868
rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "1710120e4549e04ba3baa6a1ee5a5a801fa45a72" }