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" }
13
14anyhow.workspace = true
15
16
17[dev-dependencies]
18language = { path = "../language", features = ["test-support"] }
19gpui = { path = "../gpui", features = ["test-support"] }
20fs = { path = "../fs", features = ["test-support"] }