mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:01:33 +00:00
35 lines
975 B
TOML
35 lines
975 B
TOML
[package]
|
|
name = "prettier2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/prettier2.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
client = { package = "client2", path = "../client2" }
|
|
collections = { path = "../collections"}
|
|
language = { package = "language2", path = "../language2" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
fs = { package = "fs2", path = "../fs2" }
|
|
lsp = { package = "lsp2", path = "../lsp2" }
|
|
node_runtime = { path = "../node_runtime"}
|
|
util = { path = "../util" }
|
|
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
language = { package = "language2", path = "../language2", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
|