Cargo.toml

 1[package]
 2name = "vector_store"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/vector_store.rs"
 9doctest = false
10
11[dependencies]
12gpui = { path = "../gpui" }
13language = { path = "../language" }
14project = { path = "../project" }
15workspace = { path = "../workspace" }
16util = { path = "../util" }
17picker = { path = "../picker" }
18theme = { path = "../theme" }
19editor = { path = "../editor" }
20rpc = { path = "../rpc" }
21anyhow.workspace = true
22futures.workspace = true
23smol.workspace = true
24rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
25isahc.workspace = true
26log.workspace = true
27tree-sitter.workspace = true
28lazy_static.workspace = true
29serde.workspace = true
30serde_json.workspace = true
31async-trait.workspace = true
32bincode = "1.3.3"
33matrixmultiply = "0.3.7"
34tiktoken-rs = "0.5.0"
35rand.workspace = true
36
37[dev-dependencies]
38gpui = { path = "../gpui", features = ["test-support"] }
39language = { path = "../language", features = ["test-support"] }
40project = { path = "../project", features = ["test-support"] }
41rpc = { path = "../rpc", features = ["test-support"] }
42workspace = { path = "../workspace", features = ["test-support"] }
43tree-sitter-rust = "*"
44rand.workspace = true
45unindent.workspace = true
46tempdir.workspace = true