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"
|
2021-10-05 01:06:12 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/editor.rs"
|
|
|
|
|
2021-10-05 01:06:12 +03:00
|
|
|
[features]
|
2021-10-21 10:40:50 +03:00
|
|
|
test-support = [
|
2021-12-11 03:37:53 +03:00
|
|
|
"rand",
|
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",
|
2021-12-04 16:57:56 +03:00
|
|
|
"util/test-support",
|
2021-10-21 10:40:50 +03:00
|
|
|
]
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-30 22:26:12 +03:00
|
|
|
text = { path = "../text" }
|
2021-10-05 01:06:12 +03:00
|
|
|
clock = { path = "../clock" }
|
2021-12-11 03:37:53 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-02-01 17:11:20 +03:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2021-10-05 01:06:12 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language" }
|
2022-02-02 02:35:02 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2021-11-24 17:18:15 +03:00
|
|
|
project = { path = "../project" }
|
2022-02-02 02:35:02 +03:00
|
|
|
snippet = { path = "../snippet" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-10-05 20:21:13 +03:00
|
|
|
theme = { path = "../theme" }
|
2021-10-05 01:36:52 +03:00
|
|
|
util = { path = "../util" }
|
2021-11-24 19:07:16 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2021-11-25 17:44:06 +03:00
|
|
|
aho-corasick = "0.7"
|
2021-10-05 01:36:52 +03:00
|
|
|
anyhow = "1.0"
|
2021-12-11 23:42:46 +03:00
|
|
|
itertools = "0.10"
|
2021-10-05 01:06:12 +03:00
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
2022-02-01 17:11:20 +03:00
|
|
|
ordered-float = "2.1.1"
|
2021-10-05 01:06:12 +03:00
|
|
|
parking_lot = "0.11"
|
|
|
|
postage = { version = "0.4", features = ["futures-traits"] }
|
2021-12-11 03:37:53 +03:00
|
|
|
rand = { version = "0.8.3", optional = true }
|
2021-10-05 01:06:12 +03:00
|
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
smol = "1.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-30 22:26:12 +03:00
|
|
|
text = { path = "../text", features = ["test-support"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-02-01 03:50:51 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2021-10-05 18:47:46 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-12-04 16:57:56 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-11-12 19:01:57 +03:00
|
|
|
ctor = "0.1"
|
|
|
|
env_logger = "0.8"
|
2021-10-05 01:06:12 +03:00
|
|
|
rand = "0.8"
|
|
|
|
unindent = "0.1.7"
|
2021-12-06 08:37:08 +03:00
|
|
|
tree-sitter = "0.20"
|
|
|
|
tree-sitter-rust = "0.20"
|