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