zed/crates/prettier/Cargo.toml

30 lines
717 B
TOML
Raw Normal View History

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