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" }
20anyhow.workspace = true
21futures.workspace = true
22smol.workspace = true
23rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
24isahc.workspace = true
25log.workspace = true
26tree-sitter.workspace = true
27lazy_static.workspace = true
28serde.workspace = true
29serde_json.workspace = true
30async-trait.workspace = true
31bincode = "1.3.3"
32ndarray = "0.15.6"
33sha-1 = "0.10.1"
34matrixmultiply = "0.3.7"
35
36[dev-dependencies]
37gpui = { path = "../gpui", features = ["test-support"] }
38language = { path = "../language", features = ["test-support"] }
39project = { path = "../project", features = ["test-support"] }
40workspace = { path = "../workspace", features = ["test-support"] }
41tree-sitter-rust = "*"
42rand.workspace = true
43unindent.workspace = true
44tempdir.workspace = true