mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
76 lines
2.1 KiB
TOML
76 lines
2.1 KiB
TOML
[package]
|
|
name = "editor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/editor.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"rand",
|
|
"text/test-support",
|
|
"language/test-support",
|
|
"gpui/test-support",
|
|
"project/test-support",
|
|
"util/test-support",
|
|
"workspace/test-support",
|
|
"tree-sitter-rust"
|
|
]
|
|
|
|
[dependencies]
|
|
text = { path = "../text" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
context_menu = { path = "../context_menu" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
git = { path = "../git" }
|
|
gpui = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
lsp = { path = "../lsp" }
|
|
project = { path = "../project" }
|
|
rope = { path = "../rope" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
snippet = { path = "../snippet" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
aho-corasick = "0.7"
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
indoc = "1.0.4"
|
|
itertools = "0.10"
|
|
lazy_static = "1.4"
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
ordered-float = "2.1.1"
|
|
parking_lot = "0.11"
|
|
postage = { version = "0.4", features = ["futures-traits"] }
|
|
rand = { version = "0.8.3", optional = true }
|
|
serde = { workspace = true }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
smol = "1.2"
|
|
tree-sitter-rust = { version = "*", optional = true }
|
|
tree-sitter-html = { version = "*", optional = true }
|
|
tree-sitter-javascript = { version = "*", optional = true }
|
|
|
|
[dev-dependencies]
|
|
text = { path = "../text", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
ctor = "0.1"
|
|
env_logger = "0.9"
|
|
rand = "0.8"
|
|
unindent = "0.1.7"
|
|
tree-sitter = "0.20"
|
|
tree-sitter-rust = "0.20"
|
|
tree-sitter-html = "0.19"
|
|
tree-sitter-javascript = "0.20"
|