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]
16anyhow.workspace = true
17client = { path = "../client" }
18collections = { path = "../collections" }
19fs = { path = "../fs" }
20futures.workspace = true
21gpui = { path = "../gpui" }
22language = { path = "../language" }
23log.workspace = true
24lsp = { path = "../lsp" }
25node_runtime = { path = "../node_runtime" }
26parking_lot.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30util = { path = "../util" }
31
32[dev-dependencies]
33fs = { path = "../fs", features = ["test-support"] }
34gpui = { path = "../gpui", features = ["test-support"] }
35language = { path = "../language", features = ["test-support"] }