From 41a2746804448b4fc1c2b86e220f224a53ef6d69 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 18 Jul 2026 05:38:27 +0400 Subject: fix(build): align stage zero gates with Rust 1.97 --- xtask/src/main.rs | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'xtask/src/main.rs') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index fbee066..0e6864c 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -543,15 +543,7 @@ fn run_cargo_deny() -> Result<(), String> { } let status = Command::new(cargo_deny) - .args([ - "check", - "--workspace", - "--all-features", - "advisories", - "bans", - "licenses", - "sources", - ]) + .args(["check", "advisories", "bans", "licenses", "sources"]) .status() .map_err(|err| format!("failed to run cargo-deny: {err}"))?; if status.success() { @@ -1886,7 +1878,7 @@ fn parse_native_smoke_audit_options(args: &[String]) -> Result { let value = iter.next().ok_or_else(|| { @@ -1895,7 +1887,7 @@ fn parse_native_smoke_audit_options(args: &[String]) -> Result return Err(format!("unknown native-smoke audit option: {arg}")), } -- cgit v1.2.3