Working incremental index engine, with streaming similarity search!

Co-authored-by: maxbrunsfeld <max@zed.dev>
This commit is contained in:
KCaverly 2023-06-27 15:31:21 -04:00
parent 953e928bdb
commit 4bfe3de1f2
5 changed files with 268 additions and 111 deletions

View file

@ -17,7 +17,7 @@ util = { path = "../util" }
anyhow.workspace = true
futures.workspace = true
smol.workspace = true
rusqlite = { version = "0.27.0", features=["blob"] }
rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
isahc.workspace = true
log.workspace = true
tree-sitter.workspace = true
@ -38,3 +38,4 @@ workspace = { path = "../workspace", features = ["test-support"] }
tree-sitter-rust = "*"
rand.workspace = true
unindent.workspace = true
tempdir.workspace = true