zed/crates/prettier2/Cargo.toml

36 lines
975 B
TOML
Raw Normal View History

2023-10-24 08:01:19 +00:00
[package]
name = "prettier2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/prettier2.rs"
doctest = false
[features]
test-support = []
[dependencies]
2023-11-02 17:55:02 +00:00
client = { package = "client2", path = "../client2" }
2023-10-24 08:01:19 +00:00
collections = { path = "../collections"}
2023-11-02 17:55:02 +00:00
language = { package = "language2", path = "../language2" }
gpui = { package = "gpui2", path = "../gpui2" }
fs = { package = "fs2", path = "../fs2" }
lsp = { package = "lsp2", path = "../lsp2" }
2023-10-24 08:01:19 +00:00
node_runtime = { path = "../node_runtime"}
util = { path = "../util" }
log.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
anyhow.workspace = true
futures.workspace = true
parking_lot.workspace = true
2023-10-24 08:01:19 +00:00
[dev-dependencies]
2023-11-02 17:55:02 +00:00
language = { package = "language2", path = "../language2", features = ["test-support"] }
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
fs = { package = "fs2", path = "../fs2", features = ["test-support"] }