2021-10-05 01:06:12 +03:00
|
|
|
[package]
|
|
|
|
name = "editor"
|
|
|
|
version = "0.1.0"
|
2021-10-05 11:16:13 +03:00
|
|
|
edition = "2018"
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[features]
|
2021-10-21 10:40:50 +03:00
|
|
|
test-support = [
|
|
|
|
"buffer/test-support",
|
|
|
|
"language/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
]
|
2021-10-05 01:06:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
buffer = { path = "../buffer" }
|
|
|
|
clock = { path = "../clock" }
|
|
|
|
gpui = { path = "../gpui" }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language" }
|
2021-11-24 17:18:15 +03:00
|
|
|
project = { path = "../project" }
|
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-10-05 01:36:52 +03:00
|
|
|
anyhow = "1.0"
|
2021-10-05 01:06:12 +03:00
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
|
|
|
parking_lot = "0.11"
|
|
|
|
postage = { version = "0.4", features = ["futures-traits"] }
|
|
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
smol = "1.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-05 01:36:52 +03:00
|
|
|
buffer = { path = "../buffer", features = ["test-support"] }
|
2021-10-20 23:51:40 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2021-10-05 18:47:46 +03:00
|
|
|
gpui = { path = "../gpui", 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"
|
|
|
|
tree-sitter = "0.19"
|
|
|
|
tree-sitter-rust = "0.19"
|