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