2021-10-05 01:06:12 +03:00
|
|
|
[package]
|
|
|
|
name = "editor"
|
|
|
|
version = "0.1.0"
|
2022-01-11 20:30:25 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/editor.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 01:06:12 +03:00
|
|
|
[features]
|
2021-10-21 10:40:50 +03:00
|
|
|
test-support = [
|
2021-11-30 22:26:12 +03:00
|
|
|
"text/test-support",
|
2021-10-21 10:40:50 +03:00
|
|
|
"language/test-support",
|
|
|
|
"gpui/test-support",
|
2023-10-25 20:31:47 +03:00
|
|
|
"multi_buffer/test-support",
|
2022-02-09 02:48:44 +03:00
|
|
|
"project/test-support",
|
2021-12-04 16:57:56 +03:00
|
|
|
"util/test-support",
|
2022-02-25 02:27:11 +03:00
|
|
|
"workspace/test-support",
|
2023-02-16 01:28:50 +03:00
|
|
|
"tree-sitter-rust",
|
2024-02-03 08:05:28 +03:00
|
|
|
"tree-sitter-typescript",
|
2024-02-27 08:48:19 +03:00
|
|
|
"tree-sitter-html"
|
2021-10-21 10:40:50 +03:00
|
|
|
]
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
aho-corasick = "1.1"
|
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
client.workspace = true
|
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
convert_case = "0.6.0"
|
2024-02-06 22:41:36 +03:00
|
|
|
db.workspace = true
|
2024-03-07 05:18:29 +03:00
|
|
|
emojis.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
fuzzy.workspace = true
|
|
|
|
git.workspace = true
|
|
|
|
gpui.workspace = true
|
2024-03-11 03:17:32 +03:00
|
|
|
indoc.workspace = true
|
2024-02-26 04:37:52 +03:00
|
|
|
itertools.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
2024-02-20 07:49:47 +03:00
|
|
|
linkify.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
lsp.workspace = true
|
|
|
|
multi_buffer.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
ordered-float.workspace = true
|
|
|
|
parking_lot.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2023-08-05 05:37:29 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
rpc.workspace = true
|
2023-05-12 00:40:35 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
snippet.workspace = true
|
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
2023-07-14 04:09:32 +03:00
|
|
|
tree-sitter-html = { workspace = true, optional = true }
|
2024-01-31 05:41:29 +03:00
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
2023-07-14 04:09:32 +03:00
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
ui.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
url.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
lsp = { workspace = true, features = ["test-support"] }
|
|
|
|
multi_buffer = { workspace = true, features = ["test-support"] }
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
release_channel.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
text = { workspace = true, features = ["test-support"] }
|
2023-07-14 04:09:32 +03:00
|
|
|
tree-sitter-html.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
tree-sitter-rust.workspace = true
|
2023-07-14 04:09:32 +03:00
|
|
|
tree-sitter-typescript.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
unindent.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|