2021-10-20 23:51:40 +03:00
|
|
|
[package]
|
|
|
|
name = "language"
|
|
|
|
version = "0.1.0"
|
2021-12-06 21:48:45 +03:00
|
|
|
edition = "2021"
|
2021-10-20 23:51:40 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/language.rs"
|
|
|
|
|
2021-10-20 23:51:40 +03:00
|
|
|
[features]
|
2021-11-03 03:41:01 +03:00
|
|
|
test-support = [
|
|
|
|
"rand",
|
2021-12-06 14:10:25 +03:00
|
|
|
"collections/test-support",
|
2021-11-03 03:41:01 +03:00
|
|
|
"lsp/test-support",
|
2021-12-06 14:10:25 +03:00
|
|
|
"text/test-support",
|
2021-11-03 03:41:01 +03:00
|
|
|
"tree-sitter-rust",
|
2021-12-04 16:57:56 +03:00
|
|
|
"util/test-support",
|
2021-11-03 03:41:01 +03:00
|
|
|
]
|
2021-10-20 23:51:40 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clock = { path = "../clock" }
|
2021-12-06 14:10:25 +03:00
|
|
|
collections = { path = "../collections" }
|
2021-10-20 23:51:40 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2021-10-26 20:42:40 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2021-10-20 23:51:40 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2021-12-04 16:57:56 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-12-06 14:10:25 +03:00
|
|
|
text = { path = "../text" }
|
2021-10-20 23:51:40 +03:00
|
|
|
theme = { path = "../theme" }
|
2021-10-21 14:08:11 +03:00
|
|
|
util = { path = "../util" }
|
2021-10-20 23:51:40 +03:00
|
|
|
anyhow = "1.0.38"
|
2021-10-21 14:08:11 +03:00
|
|
|
futures = "0.3"
|
2021-10-20 23:51:40 +03:00
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
|
|
|
parking_lot = "0.11.1"
|
2021-10-26 20:42:40 +03:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
rand = { version = "0.8.3", optional = true }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
similar = "1.3"
|
2021-12-06 14:10:25 +03:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
smol = "1.2"
|
2021-12-06 08:37:08 +03:00
|
|
|
tree-sitter = "0.20.0"
|
|
|
|
tree-sitter-rust = { version = "0.20.0", optional = true }
|
2021-10-20 23:51:40 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-12-06 14:10:25 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-27 01:46:08 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2021-12-06 14:10:25 +03:00
|
|
|
text = { path = "../text", features = ["test-support"] }
|
2021-12-04 16:57:56 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-12-06 18:08:17 +03:00
|
|
|
ctor = "0.1"
|
|
|
|
env_logger = "0.8"
|
2021-10-20 23:51:40 +03:00
|
|
|
rand = "0.8.3"
|
2021-12-06 08:37:08 +03:00
|
|
|
tree-sitter-rust = "0.20.0"
|
2021-10-20 23:51:40 +03:00
|
|
|
unindent = "0.1.7"
|