From 815288b5d43a5beaba16e53bf9f2a689b664af82 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 15 Jul 2024 08:44:23 +0200 Subject: [PATCH] Don't specify patch version in rust-toolchain file Closes https://github.com/emilk/eframe_template/issues/145 --- rust-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index 031b4cc8..3fb0f586 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -5,6 +5,6 @@ # to the user in the error, instead of "error: invalid channel name '[toolchain]'". [toolchain] -channel = "1.76.0" +channel = "1.76" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145 components = [ "rustfmt", "clippy" ] targets = [ "wasm32-unknown-unknown" ]