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
|
2024-01-24 02:26:58 +03:00
|
|
|
license = "GPL-3.0-only"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2023-06-21 21:53:08 +03:00
|
|
|
|
|
|
|
[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]
|
2023-09-22 16:33:59 +03:00
|
|
|
ai = { path = "../ai" }
|
2023-09-05 13:26:48 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2023-06-21 21:53:08 +03:00
|
|
|
language = { path = "../language" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
util = { path = "../util" }
|
2023-06-30 23:53:23 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2024-01-03 23:28:45 +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
|
2023-09-15 13:12:20 +03:00
|
|
|
ordered-float.workspace = true
|
2023-06-21 21:53:08 +03:00
|
|
|
smol.workspace = true
|
2023-10-03 22:16:53 +03:00
|
|
|
rusqlite.workspace = true
|
2023-06-22 23:50:07 +03:00
|
|
|
log.workspace = true
|
|
|
|
tree-sitter.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
async-trait.workspace = true
|
2023-11-14 16:28:57 +03:00
|
|
|
tiktoken-rs.workspace = true
|
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-08-21 17:35:57 +03:00
|
|
|
sha1 = "0.10.5"
|
2023-09-27 16:43:23 +03:00
|
|
|
ndarray = { version = "0.15.0" }
|
2023-06-21 21:53:08 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-26 12:18:16 +03:00
|
|
|
ai = { path = "../ai", features = ["test-support"] }
|
2023-09-05 13:26:48 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-06-21 21:53:08 +03:00
|
|
|
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"] }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"]}
|
2024-01-10 15:43:49 +03:00
|
|
|
rust-embed.workspace = true
|
2023-09-14 03:02:15 +03:00
|
|
|
client = { path = "../client" }
|
|
|
|
node_runtime = { path = "../node_runtime"}
|
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
|