zed/crates/language/Cargo.toml

45 lines
1 KiB
TOML
Raw Normal View History

2021-10-20 20:51:40 +00:00
[package]
name = "language"
version = "0.1.0"
edition = "2018"
[lib]
path = "src/language.rs"
2021-10-20 20:51:40 +00:00
[features]
test-support = [
"rand",
"text/test-support",
"lsp/test-support",
"tree-sitter-rust",
]
2021-10-20 20:51:40 +00:00
[dependencies]
text = { path = "../text" }
2021-10-20 20:51:40 +00:00
clock = { path = "../clock" }
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" }
theme = { path = "../theme" }
util = { path = "../util" }
2021-10-20 20:51:40 +00:00
anyhow = "1.0.38"
futures = "0.3"
2021-10-20 20:51:40 +00:00
lazy_static = "1.4"
log = "0.4"
parking_lot = "0.11.1"
2021-10-26 17:42:40 +00:00
postage = { version = "0.4.1", features = ["futures-traits"] }
2021-10-20 20:51:40 +00:00
rand = { version = "0.8.3", optional = true }
serde = { version = "1", features = ["derive"] }
similar = "1.3"
smol = "1.2"
tree-sitter = "0.19.5"
tree-sitter-rust = { version = "0.19.0", optional = true }
2021-10-20 20:51:40 +00:00
[dev-dependencies]
text = { path = "../text", features = ["test-support"] }
2021-10-20 20:51:40 +00:00
gpui = { path = "../gpui", features = ["test-support"] }
lsp = { path = "../lsp", features = ["test-support"] }
2021-10-20 20:51:40 +00:00
rand = "0.8.3"
tree-sitter-rust = "0.19.0"
unindent = "0.1.7"