From 7257e1d64dbec1e2ca4e351e4c92909fbf15bd61 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 6 Nov 2024 11:39:04 +0530 Subject: [PATCH] fix: upgrade to Rust 1.82.0 --- flake.nix | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d47e82c..bb54f88 100644 --- a/flake.nix +++ b/flake.nix @@ -40,7 +40,7 @@ rustStable = (import fenix {inherit pkgs;}).fromToolchainFile { file = ./rust-toolchain.toml; - sha256 = "sha256-6eN/GKzjVSjEhGO9FhWObkRFaE1Jf+uqMSdQnb8lcB4="; + sha256 = "sha256-yMuSb5eQPO/bHv+Bcf/US8LVMbf/G/0MSfiPwBhiPpk="; }; craneLib = (crane.mkLib pkgs).overrideToolchain rustStable; diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 589614b..f0438a4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.80.0" +channel = "1.82.0" components = ["clippy", "rustfmt", "rust-src"] targets = ["x86_64-unknown-linux-gnu"] profile = "minimal"