Cargo.toml

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