zed/crates/prettier/Cargo.toml

36 lines
838 B
TOML
Raw Normal View History

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