From edd7f7a06f0faa87859c7fcbceb894ad1e5fdb18 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 16 Jun 2023 01:48:15 +0530 Subject: [PATCH] feat(rust): bump Rust nightly --- Cargo.toml | 2 +- flake.nix | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1c21b37..0548428 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ lto = "thin" # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.0.6" # The preferred Rust toolchain to use in CI (rustup toolchain syntax) -rust-toolchain-version = "nightly-2023-02-22" +rust-toolchain-version = "nightly-2023-06-10" # CI backends to support (see 'cargo dist generate-ci') ci = ["github"] # The installers to generate for each app diff --git a/flake.nix b/flake.nix index 7292580..6c011ec 100644 --- a/flake.nix +++ b/flake.nix @@ -47,7 +47,7 @@ rustNightly = (import fenix {inherit pkgs;}).fromToolchainFile { file = ./rust-toolchain.toml; - sha256 = "sha256-1elQHBWEQRZ5qrEtJi6uhvwUNKedyQusyhATdBywep0="; + sha256 = "sha256-0t+XYT0Om/dDfjsFljZLULbQNJ4hMysyvUnHEoAryAk="; }; craneLib = (crane.mkLib pkgs).overrideToolchain rustNightly; diff --git a/rust-toolchain.toml b/rust-toolchain.toml index af52118..455ac0e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2023-02-22" +channel = "nightly-2023-06-10" components = [ "clippy", "rustfmt", "rust-src" ] targets = [ "x86_64-unknown-linux-gnu" ] profile = "minimal"