updated file compare in the semantic indexing engine, to work off of modified system times as opposed to file hashes

Co-authored-by: maxbrunsfeld <max@zed.dev>
This commit is contained in:
KCaverly 2023-06-30 16:53:23 -04:00
parent 36907bb4dc
commit 3408b98167
4 changed files with 74 additions and 130 deletions

View file

@ -17,6 +17,7 @@ util = { path = "../util" }
picker = { path = "../picker" }
theme = { path = "../theme" }
editor = { path = "../editor" }
rpc = { path = "../rpc" }
anyhow.workspace = true
futures.workspace = true
smol.workspace = true
@ -29,14 +30,13 @@ serde.workspace = true
serde_json.workspace = true
async-trait.workspace = true
bincode = "1.3.3"
ndarray = "0.15.6"
sha-1 = "0.10.1"
matrixmultiply = "0.3.7"
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
project = { path = "../project", features = ["test-support"] }
rpc = { path = "../rpc", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }
tree-sitter-rust = "*"
rand.workspace = true