1[package]
2name = "prettier"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8
9[lib]
10path = "src/prettier.rs"
11doctest = false
12
13[features]
14test-support = []
15
16[dependencies]
17client = { path = "../client" }
18collections = { path = "../collections"}
19language = { path = "../language" }
20gpui = { path = "../gpui" }
21fs = { path = "../fs" }
22lsp = { path = "../lsp" }
23node_runtime = { path = "../node_runtime"}
24util = { path = "../util" }
25
26log.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30anyhow.workspace = true
31futures.workspace = true
32parking_lot.workspace = true
33
34[dev-dependencies]
35language = { path = "../language", features = ["test-support"] }
36gpui = { path = "../gpui", features = ["test-support"] }
37fs = { path = "../fs", features = ["test-support"] }