mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
f2060ccbe0
This PR adds a new `xtask` command for checking that packages conform to certain standards. Still a work-in-progress, but right now it checks: - If `[lints] workspace = true` is set - If packages are using non-workspace dependencies Release Notes: - N/A
16 lines
282 B
TOML
16 lines
282 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
cargo_metadata.workspace = true
|
|
cargo_toml.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|