From 840e87eb0b3c43e78380dd22923abdf34d6882aa Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Fri, 21 Apr 2023 11:53:26 -0700 Subject: [PATCH] Require minimum clap v4.2.4. This avoids a lint failure . --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 404bdad6b..58230c57c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ bitflags = "2.0.2" # Note that this excludes the "derive" feature but some crates need it. bytemuck = { version = "1.12.1", default-features = false } # When upgrading clap, beware text output changes causing integration tests to fail. -clap = { version = "4.1.1", default-features = false, features = ["cargo", "deprecated", "derive", "help", "std", "suggestions", "usage", "wrap_help"] } +clap = { version = "4.2.4", default-features = false, features = ["cargo", "deprecated", "derive", "help", "std", "suggestions", "usage", "wrap_help"] } criterion = { version = "0.4.0", features = ["cargo_bench_support", "html_reports"] } either = "1.8.0" exhaust = "0.1.0"