2021-10-04 22:06:12 +00:00
|
|
|
[package]
|
|
|
|
name = "editor"
|
|
|
|
version = "0.1.0"
|
2022-01-11 17:30:25 +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/editor.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-04 22:06:12 +00:00
|
|
|
[features]
|
2021-10-21 07:40:50 +00:00
|
|
|
test-support = [
|
2023-04-05 08:26:43 +00:00
|
|
|
"copilot/test-support",
|
2021-11-30 19:26:12 +00:00
|
|
|
"text/test-support",
|
2021-10-21 07:40:50 +00:00
|
|
|
"language/test-support",
|
|
|
|
"gpui/test-support",
|
2023-10-25 17:31:47 +00:00
|
|
|
"multi_buffer/test-support",
|
2022-02-08 23:48:44 +00:00
|
|
|
"project/test-support",
|
2021-12-04 13:57:56 +00:00
|
|
|
"util/test-support",
|
2022-02-24 23:27:11 +00:00
|
|
|
"workspace/test-support",
|
2023-02-15 22:28:50 +00:00
|
|
|
"tree-sitter-rust",
|
2024-02-03 05:05:28 +00:00
|
|
|
"tree-sitter-typescript",
|
2021-10-21 07:40:50 +00:00
|
|
|
]
|
2021-10-04 22:06:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
aho-corasick = "1.1"
|
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
client.workspace = true
|
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
convert_case = "0.6.0"
|
2024-02-06 19:41:36 +00:00
|
|
|
copilot.workspace = true
|
|
|
|
db.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fuzzy.workspace = true
|
|
|
|
git.workspace = true
|
|
|
|
gpui.workspace = true
|
2022-04-06 21:41:51 +00:00
|
|
|
indoc = "1.0.4"
|
2024-02-26 01:37:52 +00:00
|
|
|
itertools.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
2024-02-20 04:49:47 +00:00
|
|
|
linkify.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
lsp.workspace = true
|
|
|
|
multi_buffer.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
ordered-float.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2023-08-05 02:37:29 +00:00
|
|
|
rand.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
rich_text.workspace = true
|
|
|
|
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_derive.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
snippet.workspace = true
|
|
|
|
sqlez.workspace = true
|
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-html = { workspace = true, optional = true }
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
2024-02-06 19:41:36 +00:00
|
|
|
ui.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
url.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2021-10-04 22:06:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
copilot = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00: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 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"] }
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-html.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter-rust.workspace = true
|
2023-07-14 01:09:32 +00:00
|
|
|
tree-sitter-typescript.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter.workspace = true
|
|
|
|
unindent.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|