2023-06-21 21:53:08 +03:00
|
|
|
[package]
|
2023-07-18 00:06:10 +03:00
|
|
|
name = "semantic_index"
|
2023-06-21 21:53:08 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2023-07-18 00:06:10 +03:00
|
|
|
path = "src/semantic_index.rs"
|
2023-06-21 21:53:08 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
util = { path = "../util" }
|
2023-06-28 20:27:26 +03:00
|
|
|
picker = { path = "../picker" }
|
|
|
|
theme = { path = "../theme" }
|
2023-06-29 18:58:47 +03:00
|
|
|
editor = { path = "../editor" }
|
2023-06-30 23:53:23 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2023-07-11 19:03:56 +03:00
|
|
|
settings = { path = "../settings" }
|
2023-06-21 21:53:08 +03:00
|
|
|
anyhow.workspace = true
|
2023-07-18 04:10:51 +03:00
|
|
|
postage.workspace = true
|
2023-06-21 21:53:08 +03:00
|
|
|
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-27 02:01:19 +03:00
|
|
|
matrixmultiply = "0.3.7"
|
2023-07-05 19:39:08 +03:00
|
|
|
tiktoken-rs = "0.5.0"
|
2023-07-14 01:14:44 +03:00
|
|
|
parking_lot.workspace = true
|
2023-07-06 18:11:39 +03:00
|
|
|
rand.workspace = true
|
2023-07-11 19:03:56 +03:00
|
|
|
schemars.workspace = true
|
2023-07-20 20:46:27 +03:00
|
|
|
globset.workspace = true
|
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"] }
|
2023-06-30 23:53:23 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2023-06-21 21:53:08 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-07-11 19:03:56 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"]}
|
2023-07-13 23:34:32 +03:00
|
|
|
|
2023-07-19 22:47:05 +03:00
|
|
|
pretty_assertions.workspace = true
|
2023-06-27 02:01:19 +03:00
|
|
|
rand.workspace = true
|
|
|
|
unindent.workspace = true
|
2023-06-27 22:31:21 +03:00
|
|
|
tempdir.workspace = true
|
2023-07-13 23:34:32 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-07-17 16:22:37 +03:00
|
|
|
|
2023-07-31 23:36:09 +03:00
|
|
|
tree-sitter-typescript.workspace = true
|
|
|
|
tree-sitter-json.workspace = true
|
|
|
|
tree-sitter-rust.workspace = true
|
|
|
|
tree-sitter-toml.workspace = true
|
|
|
|
tree-sitter-cpp.workspace = true
|
|
|
|
tree-sitter-elixir.workspace = true
|
|
|
|
tree-sitter-lua.workspace = true
|
|
|
|
tree-sitter-ruby.workspace = true
|
|
|
|
tree-sitter-php.workspace = true
|