forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (49 loc) · 1.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = [
"rust/blockstore",
"rust/cache",
"rust/config",
"rust/distance",
"rust/error",
"rust/index",
"rust/storage",
"rust/types",
"rust/worker"
]
[workspace.dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
arrow = "52.0.0"
thiserror = "1.0.50"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
async-trait = "0.1.74"
roaring = "0.10.3"
futures = "0.3"
parking_lot = "0.12.1"
tracing = "0.1"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tokio-util = "0.7.10"
tonic = "0.10"
prost = "0.12"
prost-types = "0.12"
num_cpus = "1.16.0"
flatbuffers = "24.3.25"
tantivy = "0.21.1"
criterion = "0.3"
chroma-blockstore = { path = "rust/blockstore" }
chroma-error = { path = "rust/error" }
chroma-config = { path = "rust/config" }
chroma-storage = { path = "rust/storage" }
chroma-cache = { path = "rust/cache" }
chroma-types = { path = "rust/types" }
chroma-index = { path = "rust/index" }
chroma-distance = { path = "rust/distance" }
worker = { path = "rust/worker" }
# Dev dependencies
"rand" = "0.8.5"
rand_xorshift = "0.3.0"
rayon = "1.8.0"
tempfile = "3.8.1"
shuttle = "0.7.1"
proptest = "1.4.0"
proptest-state-machine = "0.1.0"