From 6deba85a21619e63a9503f5965298272a89028c9 Mon Sep 17 00:00:00 2001 From: Ning Shang Date: Sun, 3 Mar 2024 18:15:23 -0800 Subject: [PATCH] rust-overlay: upgrade rust to 1.76.0 (#28) Upgrade to the newly available Rust 1.76.0. --- nix-rust-overlay/shell-aarch64.nix | 2 +- nix-rust-overlay/shell-armv6.nix | 2 +- nix-rust-overlay/shell-armv7.nix | 2 +- nix-rust-overlay/shell-x86_64-win.nix | 2 +- nix-rust-overlay/shell-x86_64.nix | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nix-rust-overlay/shell-aarch64.nix b/nix-rust-overlay/shell-aarch64.nix index 30437a4..bf9b4d1 100644 --- a/nix-rust-overlay/shell-aarch64.nix +++ b/nix-rust-overlay/shell-aarch64.nix @@ -8,7 +8,7 @@ { mkShell, stdenv, rust-bin, pkg-config, openssl, qemu }: mkShell { nativeBuildInputs = [ - rust-bin.stable."1.71.0".minimal + rust-bin.stable."1.76.0".minimal pkg-config ]; diff --git a/nix-rust-overlay/shell-armv6.nix b/nix-rust-overlay/shell-armv6.nix index 52d45d1..201037f 100644 --- a/nix-rust-overlay/shell-armv6.nix +++ b/nix-rust-overlay/shell-armv6.nix @@ -8,7 +8,7 @@ { mkShell, stdenv, rust-bin, pkg-config, openssl, qemu }: mkShell { nativeBuildInputs = [ - rust-bin.stable."1.71.0".minimal + rust-bin.stable."1.76.0".minimal pkg-config ]; diff --git a/nix-rust-overlay/shell-armv7.nix b/nix-rust-overlay/shell-armv7.nix index b926f91..20a90e4 100644 --- a/nix-rust-overlay/shell-armv7.nix +++ b/nix-rust-overlay/shell-armv7.nix @@ -8,7 +8,7 @@ { mkShell, stdenv, rust-bin, pkg-config, openssl, qemu }: mkShell { nativeBuildInputs = [ - rust-bin.stable."1.71.0".minimal + rust-bin.stable."1.76.0".minimal pkg-config ]; diff --git a/nix-rust-overlay/shell-x86_64-win.nix b/nix-rust-overlay/shell-x86_64-win.nix index f6fcf72..9972fbb 100644 --- a/nix-rust-overlay/shell-x86_64-win.nix +++ b/nix-rust-overlay/shell-x86_64-win.nix @@ -10,7 +10,7 @@ { mkShell, stdenv, rust-bin, windows, wine64, pkg-config }: mkShell { nativeBuildInputs = [ - rust-bin.stable."1.71.0".minimal + rust-bin.stable."1.76.0".minimal pkg-config ]; diff --git a/nix-rust-overlay/shell-x86_64.nix b/nix-rust-overlay/shell-x86_64.nix index 65385d8..f5c9e58 100644 --- a/nix-rust-overlay/shell-x86_64.nix +++ b/nix-rust-overlay/shell-x86_64.nix @@ -8,7 +8,7 @@ { mkShell, stdenv, rust-bin, pkg-config, openssl, qemu }: mkShell { nativeBuildInputs = [ - rust-bin.stable."1.71.0".minimal + rust-bin.stable."1.76.0".minimal pkg-config ];