From d264840b386c62996c4388c589a23a4e1f17b365 Mon Sep 17 00:00:00 2001 From: Ethan Brierley Date: Wed, 14 Aug 2024 12:35:36 +0100 Subject: chore: update rust to `1.80.1` (#2362) fixes #2360 https://blog.rust-lang.org/2024/08/08/Rust-1.80.1.html `1.80.1` fixes a fairly nasty miscompilation, but that's not my motivation for opening this PR. If I'm understanding correctly, because the rust patch version was not specified in `rust-toolchain.toml`, nix automatically upgraded to the new version. This broke the hash in `flake.nix` causing the flake to fail to build. Making this upgrade to `1.80.1` explicit, fixes this issue. --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust-toolchain.toml') diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 8cca5be0..a56a283d 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "1.80" +channel = "1.80.1" -- cgit v1.3.1