aboutsummaryrefslogtreecommitdiff
path: root/nix/compile.nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-02-07 17:34:00 +0100
committerAlex Auvolat <alex@adnab.me>2024-02-08 12:33:09 +0100
commit33e6db8b72cc19ce140d3d52428d6d23ed364046 (patch)
tree40ae7b834d41f572f2ad253c3376dd9dc54c2fc6 /nix/compile.nix
parent3a49f860731cfe1ba9924a0041b78456af9565a4 (diff)
downloadgarage-33e6db8b72cc19ce140d3d52428d6d23ed364046.tar.gz
garage-33e6db8b72cc19ce140d3d52428d6d23ed364046.zip
[dep-upgrade-202402] update rustc to 1.73
Diffstat (limited to 'nix/compile.nix')
-rw-r--r--nix/compile.nix2
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 {