mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
89 lines
2.7 KiB
TOML
89 lines
2.7 KiB
TOML
[package]
|
|
name = "editor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/editor.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"rand",
|
|
"copilot/test-support",
|
|
"text/test-support",
|
|
"language/test-support",
|
|
"gpui/test-support",
|
|
"project/test-support",
|
|
"util/test-support",
|
|
"workspace/test-support",
|
|
"tree-sitter-rust",
|
|
"tree-sitter-typescript"
|
|
]
|
|
|
|
[dependencies]
|
|
clock = { path = "../clock" }
|
|
copilot = { path = "../copilot" }
|
|
db = { path = "../db" }
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
|
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" }
|
|
rpc = { path = "../rpc" }
|
|
settings = { path = "../settings" }
|
|
snippet = { path = "../snippet" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { path = "../text" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
sqlez = { path = "../sqlez" }
|
|
workspace = { path = "../workspace" }
|
|
|
|
aho-corasick = "0.7"
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
indoc = "1.0.4"
|
|
itertools = "0.10"
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
ordered-float.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
pulldown-cmark = { version = "0.9.1", default-features = false }
|
|
rand = { workspace = true, optional = true }
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
tree-sitter-rust = { version = "*", optional = true }
|
|
tree-sitter-html = { version = "*", optional = true }
|
|
tree-sitter-javascript = { version = "*", optional = true }
|
|
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "5d20856f34315b068c41edaee2ac8a100081d259", optional = true }
|
|
|
|
[dev-dependencies]
|
|
copilot = { path = "../copilot", features = ["test-support"] }
|
|
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.workspace = true
|
|
env_logger.workspace = true
|
|
rand.workspace = true
|
|
unindent.workspace = true
|
|
tree-sitter = "0.20"
|
|
tree-sitter-rust = "0.20"
|
|
tree-sitter-html = "0.19"
|
|
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "5d20856f34315b068c41edaee2ac8a100081d259" }
|
|
tree-sitter-javascript = "0.20"
|