2023-06-21 18:53:08 +00:00
|
|
|
[package]
|
2023-07-17 21:06:10 +00:00
|
|
|
name = "semantic_index"
|
2023-06-21 18:53:08 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2023-07-17 21:06:10 +00:00
|
|
|
path = "src/semantic_index.rs"
|
2023-06-21 18:53:08 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-05 10:26:48 +00:00
|
|
|
collections = { path = "../collections" }
|
2023-06-21 18:53:08 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
util = { path = "../util" }
|
2023-06-28 17:27:26 +00:00
|
|
|
picker = { path = "../picker" }
|
|
|
|
theme = { path = "../theme" }
|
2023-06-29 15:58:47 +00:00
|
|
|
editor = { path = "../editor" }
|
2023-06-30 20:53:23 +00:00
|
|
|
rpc = { path = "../rpc" }
|
2023-07-11 16:03:56 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-06-21 18:53:08 +00:00
|
|
|
anyhow.workspace = true
|
2023-07-18 01:10:51 +00:00
|
|
|
postage.workspace = true
|
2023-06-21 18:53:08 +00:00
|
|
|
futures.workspace = true
|
2023-09-15 10:12:20 +00:00
|
|
|
ordered-float.workspace = true
|
2023-06-21 18:53:08 +00:00
|
|
|
smol.workspace = true
|
2023-06-27 19:31:21 +00:00
|
|
|
rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
|
2023-06-22 20:50:07 +00: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 00:02:56 +00:00
|
|
|
bincode = "1.3.3"
|
2023-06-26 23:01:19 +00:00
|
|
|
matrixmultiply = "0.3.7"
|
2023-07-05 16:39:08 +00:00
|
|
|
tiktoken-rs = "0.5.0"
|
2023-07-13 22:14:44 +00:00
|
|
|
parking_lot.workspace = true
|
2023-07-06 15:11:39 +00:00
|
|
|
rand.workspace = true
|
2023-07-11 16:03:56 +00:00
|
|
|
schemars.workspace = true
|
2023-07-20 17:46:27 +00:00
|
|
|
globset.workspace = true
|
2023-08-21 14:35:57 +00:00
|
|
|
sha1 = "0.10.5"
|
2023-08-29 19:44:51 +00:00
|
|
|
parse_duration = "2.1.1"
|
2023-06-21 18:53:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-05 10:26:48 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2023-06-21 18:53:08 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2023-06-30 20:53:23 +00:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2023-06-21 18:53:08 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-07-11 16:03:56 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"]}
|
2023-09-12 20:25:31 +00:00
|
|
|
git2 = { version = "0.15"}
|
2023-09-14 00:02:15 +00:00
|
|
|
rust-embed = { version = "8.0", features = ["include-exclude"] }
|
|
|
|
client = { path = "../client" }
|
|
|
|
zed = { path = "../zed"}
|
|
|
|
node_runtime = { path = "../node_runtime"}
|
2023-07-13 20:34:32 +00:00
|
|
|
|
2023-07-19 19:47:05 +00:00
|
|
|
pretty_assertions.workspace = true
|
2023-06-26 23:01:19 +00:00
|
|
|
rand.workspace = true
|
|
|
|
unindent.workspace = true
|
2023-06-27 19:31:21 +00:00
|
|
|
tempdir.workspace = true
|
2023-07-13 20:34:32 +00:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-07-17 13:22:37 +00:00
|
|
|
|
2023-07-31 20:36:09 +00: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
|
2023-09-12 20:25:31 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "eval"
|