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