diff options
author | Alex Auvolat <alex@adnab.me> | 2024-02-07 17:34:00 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-02-08 12:33:09 +0100 |
commit | 33e6db8b72cc19ce140d3d52428d6d23ed364046 (patch) | |
tree | 40ae7b834d41f572f2ad253c3376dd9dc54c2fc6 /nix | |
parent | 3a49f860731cfe1ba9924a0041b78456af9565a4 (diff) | |
download | garage-33e6db8b72cc19ce140d3d52428d6d23ed364046.tar.gz garage-33e6db8b72cc19ce140d3d52428d6d23ed364046.zip |
[dep-upgrade-202402] update rustc to 1.73
Diffstat (limited to 'nix')
-rw-r--r-- | nix/compile.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/compile.nix b/nix/compile.nix index efd88bbf..c51188fe 100644 --- a/nix/compile.nix +++ b/nix/compile.nix @@ -32,7 +32,7 @@ let */ toolchainOptions = if target == null || target == "x86_64-unknown-linux-musl" || target == "aarch64-unknown-linux-musl" then { - rustVersion = "1.68.0"; + rustVersion = "1.73.0"; extraRustComponents = [ "clippy" ]; } else { rustToolchain = pkgs.symlinkJoin { |