[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 rusqlite = { version = "0.27.0", features=["blob"] } 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 bincode = "1.3.3" [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"] }