Cargo.toml

 1[package]
 2name = "prettier"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/prettier.rs"
 8
 9[dependencies]
10language = { path = "../language" }
11gpui = { path = "../gpui" }
12fs = { path = "../fs" }
13node_runtime = { path = "../node_runtime"}
14util = { path = "../util" }
15
16serde.workspace = true
17serde_derive.workspace = true
18serde_json.workspace = true
19anyhow.workspace = true
20futures.workspace = true
21
22[dev-dependencies]
23language = { path = "../language", features = ["test-support"] }
24gpui = { path = "../gpui", features = ["test-support"] }
25fs = { path = "../fs",  features = ["test-support"] }