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 21:58:57 +03:00
|
|
|
client = { package = "client2", path = "../client2" }
|
2021-10-05 01:06:12 +03:00
|
|
|
clock = { path = "../clock" }
|
2024-01-03 21:58:57 +03:00
|
|
|
copilot = { package="copilot2", path = "../copilot2" }
|
|
|
|
db = { package="db2", path = "../db2" }
|
2021-12-11 03:37:53 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 21:58:57 +03:00
|
|
|
# context_menu = { path = "../context_menu" }
|
|
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
|
|
git = { package = "git3", path = "../git3" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
language = { package = "language2", path = "../language2" }
|
|
|
|
lsp = { package = "lsp2", path = "../lsp2" }
|
|
|
|
multi_buffer = { package = "multi_buffer2", path = "../multi_buffer2" }
|
|
|
|
project = { package = "project2", path = "../project2" }
|
|
|
|
rpc = { package = "rpc2", path = "../rpc2" }
|
|
|
|
rich_text = { package = "rich_text2", path = "../rich_text2" }
|
|
|
|
settings = { package="settings2", path = "../settings2" }
|
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 21:58:57 +03:00
|
|
|
text = { package="text2", path = "../text2" }
|
|
|
|
theme = { package="theme2", path = "../theme2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
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 21:58:57 +03:00
|
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
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 21:58:57 +03:00
|
|
|
copilot = { package="copilot2", path = "../copilot2", features = ["test-support"] }
|
|
|
|
text = { package="text2", path = "../text2", features = ["test-support"] }
|
|
|
|
language = { package="language2", path = "../language2", features = ["test-support"] }
|
|
|
|
lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2021-12-04 16:57:56 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2024-01-03 21:58:57 +03:00
|
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
|
|
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|
|
|
|
multi_buffer = { package = "multi_buffer2", path = "../multi_buffer2", 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
|