2021-10-20 20:51:40 +00:00
|
|
|
[package]
|
|
|
|
name = "language"
|
|
|
|
version = "0.1.0"
|
2021-12-06 18:48:45 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/language.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-20 20:51:40 +00:00
|
|
|
[features]
|
2021-11-03 00:41:01 +00:00
|
|
|
test-support = [
|
|
|
|
"rand",
|
2021-12-06 11:10:25 +00:00
|
|
|
"collections/test-support",
|
2021-11-03 00:41:01 +00:00
|
|
|
"lsp/test-support",
|
2021-12-06 11:10:25 +00:00
|
|
|
"text/test-support",
|
2021-11-03 00:41:01 +00:00
|
|
|
"tree-sitter-rust",
|
2022-04-25 20:14:05 +00:00
|
|
|
"tree-sitter-typescript",
|
2022-07-28 21:03:31 +00:00
|
|
|
"settings/test-support",
|
2021-12-04 13:57:56 +00:00
|
|
|
"util/test-support",
|
2021-11-03 00:41:01 +00:00
|
|
|
]
|
2021-10-20 20:51:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fuzzy.workspace = true
|
|
|
|
git.workspace = true
|
2023-05-19 16:36:46 +00:00
|
|
|
globset.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
lsp.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
rand = { workspace = true, optional = true }
|
2023-04-25 00:41:55 +00:00
|
|
|
regex.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
rpc.workspace = true
|
2023-05-11 21:40:35 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2021-10-20 20:51:40 +00:00
|
|
|
similar = "1.3"
|
2023-04-25 00:41:55 +00:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
2024-02-01 09:03:09 +00:00
|
|
|
pulldown-cmark.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter.workspace = true
|
|
|
|
unicase = "2.6"
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
|
2021-10-20 20:51:40 +00:00
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2023-05-23 05:11:22 +00:00
|
|
|
indoc.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
rand.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
text = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter-elixir.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-embedded-template.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter-heex.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-html.workspace = true
|
|
|
|
tree-sitter-json.workspace = true
|
|
|
|
tree-sitter-markdown.workspace = true
|
|
|
|
tree-sitter-ruby.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter-rust.workspace = true
|
|
|
|
tree-sitter-typescript.workspace = true
|
|
|
|
unindent.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|