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"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2021-10-20 23:51:40 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/language.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-20 23:51:40 +03:00
|
|
|
[features]
|
2021-11-03 03:41:01 +03:00
|
|
|
test-support = [
|
|
|
|
"rand",
|
2022-02-22 00:54:52 +03:00
|
|
|
"client/test-support",
|
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",
|
2022-04-25 23:14:05 +03:00
|
|
|
"tree-sitter-typescript",
|
2022-07-29 00:03:31 +03:00
|
|
|
"settings/test-support",
|
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" }
|
2024-01-03 22:58:02 +03:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 23:11:59 +03:00
|
|
|
git = { path = "../git" }
|
2024-01-03 22:58:02 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2021-10-26 20:42:40 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2024-01-03 23:09:08 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings" }
|
2021-12-04 16:57:56 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2024-01-03 22:58:02 +03:00
|
|
|
text = { package = "text2", path = "../text2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2021-10-21 14:08:11 +03:00
|
|
|
util = { path = "../util" }
|
2023-05-12 00:40:35 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2022-10-24 11:04:08 +03:00
|
|
|
async-broadcast = "0.4"
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait.workspace = true
|
|
|
|
futures.workspace = true
|
2023-05-19 19:36:46 +03:00
|
|
|
globset.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
regex.workspace = true
|
2023-05-12 00:40:35 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2021-10-20 23:51:40 +03:00
|
|
|
similar = "1.3"
|
2023-04-25 03:41:55 +03:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2023-06-10 00:55:46 +03:00
|
|
|
tree-sitter.workspace = true
|
2023-01-20 12:41:40 +03:00
|
|
|
unicase = "2.6"
|
2021-10-20 23:51:40 +03:00
|
|
|
|
2023-07-14 04:09:32 +03:00
|
|
|
rand = { workspace = true, optional = true }
|
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
2024-01-03 22:58:02 +03:00
|
|
|
pulldown-cmark = { version = "0.9.2", default-features = false }
|
2023-07-14 04:09:32 +03:00
|
|
|
|
2021-10-20 23:51:40 +03:00
|
|
|
[dev-dependencies]
|
2024-01-03 23:02:14 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-12-06 14:10:25 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2021-10-27 01:46:08 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
text = { package = "text2", path = "../text2", features = ["test-support"] }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2021-12-04 16:57:56 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-05-23 08:11:22 +03:00
|
|
|
indoc.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2023-06-13 02:24:17 +03:00
|
|
|
unindent.workspace = true
|
|
|
|
|
2023-07-14 04:09:32 +03:00
|
|
|
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
|