mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
e88d3bb97e
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
41 lines
1 KiB
TOML
41 lines
1 KiB
TOML
[package]
|
|
name = "editor"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
test-support = [
|
|
"buffer/test-support",
|
|
"language/test-support",
|
|
"gpui/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
buffer = { path = "../buffer" }
|
|
clock = { path = "../clock" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
project = { path = "../project" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
anyhow = "1.0"
|
|
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]
|
|
buffer = { path = "../buffer", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
ctor = "0.1"
|
|
env_logger = "0.8"
|
|
rand = "0.8"
|
|
unindent = "0.1.7"
|
|
tree-sitter = "0.19"
|
|
tree-sitter-rust = "0.19"
|