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
|
2021-10-05 01:06:12 +03:00
|
|
|
|
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 = [
|
2023-04-05 11:26:43 +03:00
|
|
|
"copilot/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",
|
|
|
|
"tree-sitter-typescript"
|
2021-10-21 10:40:50 +03:00
|
|
|
]
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 23:02:14 +03:00
|
|
|
client = { path = "../client" }
|
2021-10-05 01:06:12 +03:00
|
|
|
clock = { path = "../clock" }
|
2024-01-03 22:01:58 +03:00
|
|
|
copilot = { path = "../copilot" }
|
2024-01-03 23:09:08 +03:00
|
|
|
db = { path = "../db" }
|
2021-12-11 03:37:53 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 21:58:57 +03:00
|
|
|
# context_menu = { path = "../context_menu" }
|
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 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
|
|
|
lsp = { path = "../lsp" }
|
2024-01-03 22:01:58 +03:00
|
|
|
multi_buffer = { path = "../multi_buffer" }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project" }
|
2024-01-03 23:09:08 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2024-01-03 22:48:46 +03:00
|
|
|
rich_text = { path = "../rich_text" }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings" }
|
2022-02-02 02:35:02 +03:00
|
|
|
snippet = { path = "../snippet" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2024-01-03 23:33:51 +03:00
|
|
|
text = { path = "../text" }
|
2024-01-03 23:41:01 +03:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 23:33:51 +03:00
|
|
|
ui = { path = "../ui" }
|
2021-10-05 01:36:52 +03:00
|
|
|
util = { path = "../util" }
|
2022-11-17 03:35:56 +03:00
|
|
|
sqlez = { path = "../sqlez" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2023-03-26 13:30:21 +03:00
|
|
|
|
2023-09-18 18:01:08 +03:00
|
|
|
aho-corasick = "1.1"
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2023-08-05 05:37:29 +03:00
|
|
|
convert_case = "0.6.0"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2022-04-07 00:41:51 +03:00
|
|
|
indoc = "1.0.4"
|
2021-12-11 23:42:46 +03:00
|
|
|
itertools = "0.10"
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
ordered-float.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2023-08-05 05:37:29 +03:00
|
|
|
rand.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-03 21:58:57 +03:00
|
|
|
serde_json.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_derive.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2023-07-14 04:09:32 +03:00
|
|
|
|
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
|
|
|
tree-sitter-html = { workspace = true, optional = true }
|
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 22:01:58 +03:00
|
|
|
copilot = { path = "../copilot", features = ["test-support"] }
|
2024-01-03 23:33:51 +03:00
|
|
|
text = { path = "../text", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-12-04 16:57:56 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2024-01-03 22:01:58 +03:00
|
|
|
multi_buffer = { path = "../multi_buffer", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
unindent.workspace = true
|
2023-06-10 00:55:46 +03:00
|
|
|
tree-sitter.workspace = true
|
2023-07-14 04:09:32 +03:00
|
|
|
tree-sitter-rust.workspace = true
|
|
|
|
tree-sitter-html.workspace = true
|
|
|
|
tree-sitter-typescript.workspace = true
|