2023-06-21 21:53:08 +03:00
|
|
|
[package]
|
|
|
|
name = "vector_store"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/vector_store.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
smol.workspace = true
|
2023-06-27 22:31:21 +03:00
|
|
|
rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
|
2023-06-22 23:50:07 +03:00
|
|
|
isahc.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
async-trait.workspace = true
|
2023-06-26 03:02:56 +03:00
|
|
|
bincode = "1.3.3"
|
2023-06-26 17:34:12 +03:00
|
|
|
ndarray = "0.15.6"
|
2023-06-27 02:01:19 +03:00
|
|
|
sha-1 = "0.10.1"
|
|
|
|
matrixmultiply = "0.3.7"
|
2023-06-21 21:53:08 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-06-27 02:01:19 +03:00
|
|
|
tree-sitter-rust = "*"
|
|
|
|
rand.workspace = true
|
|
|
|
unindent.workspace = true
|
2023-06-27 22:31:21 +03:00
|
|
|
tempdir.workspace = true
|