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
|
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]
|
2023-09-26 01:53:28 +03:00
|
|
|
client = { path = "../client" }
|
2023-09-22 18:40:12 +03:00
|
|
|
collections = { path = "../collections"}
|
2023-09-01 18:31:16 +03:00
|
|
|
language = { path = "../language" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
fs = { path = "../fs" }
|
2023-09-18 14:56:40 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2023-09-06 17:23:04 +03:00
|
|
|
node_runtime = { path = "../node_runtime"}
|
2023-09-08 15:41:23 +03:00
|
|
|
util = { path = "../util" }
|
2023-09-01 18:31:16 +03:00
|
|
|
|
2023-09-22 23:49:03 +03:00
|
|
|
log.workspace = true
|
2023-09-06 13:57:50 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-09-01 18:31:16 +03:00
|
|
|
anyhow.workspace = true
|
2023-09-05 17:09:22 +03:00
|
|
|
futures.workspace = true
|
2023-10-26 13:29:22 +03:00
|
|
|
parking_lot.workspace = true
|
2023-09-01 18:31:16 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|