From e15c1f83fbf485a22bc27ffe707101ae9c121c0c Mon Sep 17 00:00:00 2001 From: yuanyuyuan Date: Fri, 16 Feb 2024 11:44:13 +0800 Subject: [PATCH] Ensure that the clap version is set to a version no newer than 4.5.0 to fix #740 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9af42deeae..6c839e5274 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,7 +82,7 @@ async-std = { version = "=1.12.0", default-features = false } # Default features async-trait = "0.1.60" base64 = "0.21.4" bincode = "1.3.3" -clap = { version = "4.4.11", features = ["derive"] } +clap = { version = "4.4.*", features = ["derive"] } const_format = "0.2.30" crc = "3.0.1" criterion = "0.5"