From 50b9f2ab3d47ce34dfe17913338d8cddd09d1ee8 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 13 Jun 2022 13:42:58 -0400 Subject: [PATCH] xtask: Pin to clap 3.1 to avoid deprecation errors This is a minimal fix to get the CI passing again. See https://github.com/clap-rs/clap/issues/3822 for more details. --- xtask/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 449835595..26d72cef6 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] anyhow = "1.0.51" cfg-if = "1.0.0" -clap = { version = "3.0.13", features = ["derive"] } +clap = { version = "~3.1", features = ["derive"] } # The latest fatfs release (0.3.5) is old, use git instead to pick up some fixes. fatfs = { git = "https://github.com/rafalh/rust-fatfs.git", rev = "87fc1ed5074a32b4e0344fcdde77359ef9e75432" } fs-err = "2.6.0"