mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
89 lines
2.4 KiB
TOML
89 lines
2.4 KiB
TOML
[package]
|
|
name = "language"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/language.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"rand",
|
|
"client/test-support",
|
|
"collections/test-support",
|
|
"lsp/test-support",
|
|
"text/test-support",
|
|
"tree-sitter-rust",
|
|
"tree-sitter-typescript",
|
|
"settings/test-support",
|
|
"util/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
client = { path = "../client" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
fs = { path = "../fs" }
|
|
git = { path = "../git" }
|
|
gpui = { path = "../gpui" }
|
|
lsp = { path = "../lsp" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { path = "../text" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
async-broadcast = "0.4"
|
|
async-trait.workspace = true
|
|
futures.workspace = true
|
|
globset.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
pulldown-cmark = { version = "0.9.2", default-features = false }
|
|
regex.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
similar = "1.3"
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
tree-sitter.workspace = true
|
|
unicase = "2.6"
|
|
|
|
rand = { workspace = true, optional = true }
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
client = { path = "../client", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
text = { path = "../text", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
indoc.workspace = true
|
|
rand.workspace = true
|
|
unindent.workspace = true
|
|
|
|
tree-sitter-embedded-template.workspace = true
|
|
tree-sitter-html.workspace = true
|
|
tree-sitter-json.workspace = true
|
|
tree-sitter-markdown.workspace = true
|
|
tree-sitter-rust.workspace = true
|
|
tree-sitter-python.workspace = true
|
|
tree-sitter-typescript.workspace = true
|
|
tree-sitter-ruby.workspace = true
|
|
tree-sitter-elixir.workspace = true
|
|
tree-sitter-heex.workspace = true
|