zed/crates/semantic_index/Cargo.toml

70 lines
2.1 KiB
TOML
Raw Normal View History

[package]
name = "semantic_index"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
path = "src/semantic_index.rs"
doctest = false
[dependencies]
2023-09-22 16:33:59 +03:00
ai = { path = "../ai" }
anyhow.workspace = true
async-trait.workspace = true
2023-09-05 13:26:48 +03:00
collections = { path = "../collections" }
futures.workspace = true
globset.workspace = true
gpui = { path = "../gpui" }
language = { path = "../language" }
lazy_static.workspace = true
log.workspace = true
ndarray = { version = "0.15.0" }
ordered-float.workspace = true
parking_lot.workspace = true
postage.workspace = true
project = { path = "../project" }
rand.workspace = true
release_channel = { path = "../release_channel" }
rpc = { path = "../rpc" }
rusqlite.workspace = true
schemars.workspace = true
serde.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
2023-08-21 17:35:57 +03:00
sha1 = "0.10.5"
smol.workspace = true
tiktoken-rs.workspace = true
tree-sitter.workspace = true
util = { path = "../util" }
workspace = { path = "../workspace" }
[dev-dependencies]
ai = { path = "../ai", features = ["test-support"] }
client = { path = "../client" }
2023-09-05 13:26:48 +03:00
collections = { path = "../collections", features = ["test-support"] }
ctor.workspace = true
env_logger.workspace = true
gpui = { path = "../gpui", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
node_runtime = { path = "../node_runtime" }
pretty_assertions.workspace = true
project = { path = "../project", features = ["test-support"] }
rand.workspace = true
rpc = { path = "../rpc", features = ["test-support"] }
rust-embed.workspace = true
settings = { path = "../settings", features = ["test-support"]}
2024-01-24 20:58:09 +03:00
tempfile.workspace = true
2023-07-31 23:36:09 +03:00
tree-sitter-cpp.workspace = true
tree-sitter-elixir.workspace = true
tree-sitter-json.workspace = true
2023-07-31 23:36:09 +03:00
tree-sitter-lua.workspace = true
tree-sitter-php.workspace = true
tree-sitter-ruby.workspace = true
tree-sitter-rust.workspace = true
tree-sitter-toml.workspace = true
tree-sitter-typescript.workspace = true
unindent.workspace = true
workspace = { path = "../workspace", features = ["test-support"] }