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