Fix cargo-about install command (#4512)

Fix cargo about install
This commit is contained in:
James Lindsay
2026-09-14 17:34:08 +00:00
committed by GitHub
parent ecd2007e63
commit eaadea6593

View File

@@ -66,7 +66,7 @@ fn requirements(task: &Task) -> Vec<Requirement> {
name: "Cargo About",
// NOTICE: keep in sync with the `cargo-about` version pinned in `.github/workflows/build.yml` and `.devcontainer/devcontainer.json`
version: Some(">=0.9.2"),
install: "cargo install -f cargo-about@0.9.2".into(),
install: "cargo install --features=cli -f cargo-about@0.9.2".into(),
skip: Some(&|task| matches!(task.target, Target::Cli)),
..Default::default()
},