zed/crates/prettier/Cargo.toml

36 lines
808 B
TOML
Raw Normal View History

[package]
name = "prettier"
version = "0.1.0"
edition = "2021"
2023-10-12 13:26:28 +00:00
publish = false
[lib]
path = "src/prettier.rs"
2023-10-12 13:26:28 +00:00
doctest = false
2023-09-01 15:31:16 +00:00
2023-10-11 16:08:35 +00:00
[features]
test-support = []
2023-09-01 15:31:16 +00:00
[dependencies]
client = { path = "../client" }
2023-09-22 15:40:12 +00:00
collections = { path = "../collections"}
2023-09-01 15:31:16 +00:00
language = { path = "../language" }
gpui = { path = "../gpui" }
fs = { path = "../fs" }
2023-09-18 11:56:40 +00:00
lsp = { path = "../lsp" }
node_runtime = { path = "../node_runtime"}
util = { path = "../util" }
2023-09-01 15:31:16 +00:00
2023-09-22 20:49:03 +00:00
log.workspace = true
2023-09-06 10:57:50 +00:00
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
2023-09-01 15:31:16 +00:00
anyhow.workspace = true
futures.workspace = true
parking_lot.workspace = true
2023-09-01 15:31:16 +00:00
[dev-dependencies]
language = { path = "../language", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
fs = { path = "../fs", features = ["test-support"] }