zed/crates/multi_buffer2/Cargo.toml

79 lines
2.5 KiB
TOML
Raw Normal View History

2023-11-01 01:10:23 +03:00
[package]
name = "multi_buffer2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/multi_buffer2.rs"
doctest = false
[features]
test-support = [
2023-11-02 20:55:02 +03:00
"copilot/test-support",
2023-11-01 01:10:23 +03:00
"text/test-support",
2023-11-02 20:55:02 +03:00
"language/test-support",
"gpui/test-support",
2023-11-01 01:10:23 +03:00
"util/test-support",
"tree-sitter-rust",
"tree-sitter-typescript"
]
[dependencies]
2023-11-02 20:55:02 +03:00
client = { package = "client2", path = "../client2" }
2023-11-01 01:10:23 +03:00
clock = { path = "../clock" }
collections = { path = "../collections" }
git = { package = "git3", path = "../git3" }
2023-11-02 20:55:02 +03:00
gpui = { package = "gpui2", path = "../gpui2" }
language = { package = "language2", path = "../language2" }
lsp = { package = "lsp2", path = "../lsp2" }
2023-11-03 04:19:18 +03:00
rich_text = { package = "rich_text2", path = "../rich_text2" }
2023-11-02 20:55:02 +03:00
settings = { package = "settings2", path = "../settings2" }
2023-11-01 01:10:23 +03:00
snippet = { path = "../snippet" }
sum_tree = { path = "../sum_tree" }
text = { package = "text2", path = "../text2" }
2023-11-02 20:55:02 +03:00
theme = { package = "theme2", path = "../theme2" }
2023-11-01 01:10:23 +03:00
util = { path = "../util" }
aho-corasick = "1.1"
anyhow.workspace = true
convert_case = "0.6.0"
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.2", default-features = false }
rand.workspace = true
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
smallvec.workspace = true
smol.workspace = true
tree-sitter-rust = { workspace = true, optional = true }
tree-sitter-html = { workspace = true, optional = true }
tree-sitter-typescript = { workspace = true, optional = true }
[dev-dependencies]
2023-11-02 20:55:02 +03:00
copilot = { package = "copilot2", path = "../copilot2", features = ["test-support"] }
text = { package = "text2", path = "../text2", features = ["test-support"] }
2023-11-02 20:55:02 +03:00
language = { package = "language2", path = "../language2", features = ["test-support"] }
lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
2023-11-01 01:10:23 +03:00
util = { path = "../util", features = ["test-support"] }
2023-11-02 20:55:02 +03:00
project = { package = "project2", path = "../project2", features = ["test-support"] }
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
2023-11-01 01:10:23 +03:00
ctor.workspace = true
env_logger.workspace = true
rand.workspace = true
unindent.workspace = true
tree-sitter.workspace = true
tree-sitter-rust.workspace = true
tree-sitter-html.workspace = true
tree-sitter-typescript.workspace = true