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"
36parking_lot.workspace = true
37rand.workspace = true
38schemars.workspace = true
39
40[dev-dependencies]
41gpui = { path = "../gpui", features = ["test-support"] }
42language = { path = "../language", features = ["test-support"] }
43project = { path = "../project", features = ["test-support"] }
44rpc = { path = "../rpc", features = ["test-support"] }
45workspace = { path = "../workspace", features = ["test-support"] }
46settings = { path = "../settings", features = ["test-support"]}
47tree-sitter-rust = "*"
48
49rand.workspace = true
50unindent.workspace = true
51tempdir.workspace = true
52ctor.workspace = true
53env_logger.workspace = true