zed/crates/language/Cargo.toml

87 lines
2.3 KiB
TOML
Raw Normal View History

2021-10-20 20:51:40 +00:00
[package]
name = "language"
version = "0.1.0"
edition = "2021"
publish = false
2021-10-20 20:51:40 +00:00
[lib]
path = "src/language.rs"
doctest = false
2021-10-20 20:51:40 +00:00
[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",
]
2021-10-20 20:51:40 +00:00
[dependencies]
clock = { path = "../clock" }
collections = { path = "../collections" }
2022-01-13 14:10:29 +00:00
fuzzy = { path = "../fuzzy" }
2022-10-11 22:25:54 +00:00
fs = { path = "../fs" }
git = { path = "../git" }
2021-10-20 20:51:40 +00:00
gpui = { path = "../gpui" }
2021-10-26 17:42:40 +00:00
lsp = { path = "../lsp" }
2021-10-20 20:51:40 +00:00
rpc = { path = "../rpc" }
settings = { path = "../settings" }
sum_tree = { path = "../sum_tree" }
text = { path = "../text" }
2021-10-20 20:51:40 +00:00
theme = { path = "../theme" }
util = { path = "../util" }
anyhow.workspace = true
2022-10-24 08:04:08 +00:00
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
regex.workspace = true
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
2021-10-20 20:51:40 +00:00
similar = "1.3"
smallvec.workspace = true
smol.workspace = true
2023-06-09 21:55:46 +00:00
tree-sitter.workspace = true
unicase = "2.6"
2021-10-20 20:51:40 +00:00
rand = { workspace = true, optional = true }
tree-sitter-rust = { workspace = true, optional = true }
tree-sitter-typescript = { workspace = true, optional = true }
2021-10-20 20:51:40 +00:00
[dev-dependencies]
client = { path = "../client", features = ["test-support"] }
collections = { path = "../collections", features = ["test-support"] }
2021-10-20 20:51:40 +00:00
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
2023-05-23 05:11:22 +00:00
indoc.workspace = true
rand.workspace = true
2023-06-12 23:24:17 +00:00
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