mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
78 lines
2.2 KiB
TOML
78 lines
2.2 KiB
TOML
[package]
|
|
name = "semantic_index"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/semantic_index.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
project = { path = "../project" }
|
|
workspace = { path = "../workspace" }
|
|
util = { path = "../util" }
|
|
picker = { path = "../picker" }
|
|
theme = { path = "../theme" }
|
|
editor = { path = "../editor" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
anyhow.workspace = true
|
|
postage.workspace = true
|
|
futures.workspace = true
|
|
smol.workspace = true
|
|
rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] }
|
|
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
|
|
bincode = "1.3.3"
|
|
matrixmultiply = "0.3.7"
|
|
tiktoken-rs = "0.5.0"
|
|
parking_lot.workspace = true
|
|
rand.workspace = true
|
|
schemars.workspace = true
|
|
globset.workspace = true
|
|
sha1 = "0.10.5"
|
|
parse_duration = "2.1.1"
|
|
|
|
[dev-dependencies]
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"]}
|
|
git2 = { version = "0.15"}
|
|
rust-embed = { version = "8.0", features = ["include-exclude"] }
|
|
client = { path = "../client" }
|
|
zed = { path = "../zed"}
|
|
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
|
|
|
|
[[example]]
|
|
name = "eval"
|