-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Cargo.toml
69 lines (64 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
resolver = "2"
members = [
"rust/benchmark",
"rust/blockstore",
"rust/cache",
"rust/chroma",
"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",
"serde",
] }
async-trait = "0.1.74"
roaring = "0.10.3"
futures = "0.3"
parking_lot = { version = "0.12.1", features = ["serde"] }
tracing = "0.1"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tokio-util = "0.7.10"
tonic = "0.12"
prost = "0.13"
prost-types = "0.12"
num_cpus = "1.16.0"
flatbuffers = "24.3.25"
tantivy = "0.21.1"
criterion = { version = "0.5", features = ["async_tokio"] }
chroma-benchmark = { path = "rust/benchmark" }
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
bincode = "1.3.3"
indicatif = "0.17.8"
proptest = "1.5.0"
proptest-state-machine = "0.3.0"
rand = "0.8.5"
rand_xorshift = "0.3.0"
rayon = "1.8.0"
shuttle = "0.7.1"
tempfile = "3.8.1"
itertools = "0.13.0"
[profile.release]
debug = 2
lto = "thin"