From 4e2009ad4d8d0424719a2b70d82264df2292891f Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 23 Jun 2026 10:47:05 -0400 Subject: [PATCH] Increase assert_cmd dependency lower bound to 2.2.0 This avoids deprecation warnings like: error: use of deprecated associated function `assert_cmd::Command::cargo_bin`: incompatible with a custom cargo build-dir, see instead `cargo::cargo_bin_cmd!` --> tests/stratis_min.rs:921:28 | 921 | let mut cmd = Command::cargo_bin("stratis-min").unwrap(); Signed-off-by: mulhern --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 403f2daf4f..9090a1534c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -242,7 +242,7 @@ version = "0.72.0" optional = true [dev-dependencies] -assert_cmd = "2.1.0" +assert_cmd = "2.2.0" assert_matches = "1.5.0" loopdev-3 = "0.5.1" predicates = "3.1.0"