From de67637cb5daf4ebe4d125fa2b7da33dbea49ce9 Mon Sep 17 00:00:00 2001 From: Kaya Gokalp Date: Thu, 3 Aug 2023 22:02:32 +0300 Subject: [PATCH] fix: bump rust version to 1.70 after 2023-07-20 --- patches.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/patches.nix b/patches.nix index 5176b289..d69fad22 100644 --- a/patches.nix +++ b/patches.nix @@ -311,4 +311,11 @@ in [ rust = pkgs.rust-bin.stable."1.68.0".default; }; } + # `forc-wallet` requires Rust 1.70 as of ~2023-07-20 + { + condition = m: m.date >= "2023-07-20"; + patch = m: { + rust = pkgs.rust-bin.stable."1.70.0".default; + }; + } ]