mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
09db455db2
Co-Authored-By: Julia Risley <julia@zed.dev>
70 lines
2.3 KiB
TOML
70 lines
2.3 KiB
TOML
[package]
|
|
name = "semantic_index2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/semantic_index.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ai = { package = "ai2", path = "../ai2" }
|
|
collections = { path = "../collections" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
project = { package = "project2", path = "../project2" }
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
util = { path = "../util" }
|
|
rpc = { package = "rpc2", path = "../rpc2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
anyhow.workspace = true
|
|
postage.workspace = true
|
|
futures.workspace = true
|
|
ordered-float.workspace = true
|
|
smol.workspace = true
|
|
rusqlite.workspace = true
|
|
log.workspace = true
|
|
tree-sitter.workspace = true
|
|
lazy_static.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
async-trait.workspace = true
|
|
tiktoken-rs.workspace = true
|
|
parking_lot.workspace = true
|
|
rand.workspace = true
|
|
schemars.workspace = true
|
|
globset.workspace = true
|
|
sha1 = "0.10.5"
|
|
ndarray = { version = "0.15.0" }
|
|
|
|
[dev-dependencies]
|
|
ai = { package = "ai2", path = "../ai2", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
language = { package = "language2", path = "../language2", features = ["test-support"] }
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"]}
|
|
rust-embed = { version = "8.0", features = ["include-exclude"] }
|
|
client = { package = "client2", path = "../client2" }
|
|
node_runtime = { path = "../node_runtime"}
|
|
|
|
pretty_assertions.workspace = true
|
|
rand.workspace = true
|
|
unindent.workspace = true
|
|
tempdir.workspace = true
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
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
|