zed/crates/prettier2/Cargo.toml

36 lines
826 B
TOML
Raw Normal View History

2023-10-24 11:01:19 +03:00
[package]
name = "prettier2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/prettier2.rs"
doctest = false
[features]
test-support = []
[dependencies]
client2 = { path = "../client2" }
collections = { path = "../collections"}
language2 = { path = "../language2" }
gpui2 = { path = "../gpui2" }
2023-10-26 19:19:46 +03:00
fs2 = { path = "../fs2" }
2023-10-24 11:01:19 +03:00
lsp2 = { path = "../lsp2" }
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 11:01:19 +03:00
[dev-dependencies]
language2 = { path = "../language2", features = ["test-support"] }
gpui2 = { path = "../gpui2", features = ["test-support"] }
2023-10-26 19:19:46 +03:00
fs2 = { path = "../fs2", features = ["test-support"] }