1[package]
2name = "prettier2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/prettier2.rs"
9doctest = false
10
11[features]
12test-support = []
13
14[dependencies]
15client2 = { path = "../client2" }
16collections = { path = "../collections"}
17language2 = { path = "../language2" }
18gpui2 = { path = "../gpui2" }
19fs2 = { path = "../fs2" }
20lsp2 = { path = "../lsp2" }
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
30parking_lot.workspace = true
31
32[dev-dependencies]
33language2 = { path = "../language2", features = ["test-support"] }
34gpui2 = { path = "../gpui2", features = ["test-support"] }
35fs2 = { path = "../fs2", features = ["test-support"] }