From 6db995aec500f29f22afcd7539ff2f9bf37d654f Mon Sep 17 00:00:00 2001 From: mariari Date: Sat, 26 Aug 2023 01:18:00 +0800 Subject: [PATCH] Bump the rust toolchain version After running cargo update, the following change was added updating clap_lex v0.5.0 -> v0.5.1 This made it so that the project failed to build with the following error error: package `clap_builder v4.4.0` cannot be built because it requires rustc 1.70.0 or newer, while the currently active rustc version is 1.67.1 Either upgrade to rustc 1.70.0 or newer, or use cargo update -p clap_builder@4.4.0 --precise ver where `ver` is the latest version of `clap_builder` supporting rustc 1.67.1 So I've bumped the version --- rust-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index d624c9ff..9006c0b4 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.67.1 \ No newline at end of file +1.70.0 \ No newline at end of file