2023-08-22 23:12:59 +03:00
|
|
|
[package]
|
|
|
|
name = "prettier"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-10-12 16:26:28 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-08-22 23:12:59 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/prettier.rs"
|
2023-10-12 16:26:28 +03:00
|
|
|
doctest = false
|
2023-09-01 18:31:16 +03:00
|
|
|
|
2023-10-11 19:08:35 +03:00
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
2023-09-01 18:31:16 +03:00
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2023-09-22 23:49:03 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
lsp.workspace = true
|
|
|
|
node_runtime.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2023-09-06 13:57:50 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2023-09-01 18:31:16 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|