diff options
author | Alex <alex@adnab.me> | 2023-04-25 14:56:49 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-04-25 14:56:49 +0000 |
commit | 1ecd88c01f0857139921214a264128e5639e31db (patch) | |
tree | eeca4d33aabec4150296f6c475224a8510563204 /nix/compile.nix | |
parent | a16eb7e4b8344d2f58c09a249b7b1bd17d339a35 (diff) | |
parent | 5efcdc0de3121da18e7531a9f8196ef38cecd93c (diff) | |
download | garage-1ecd88c01f0857139921214a264128e5639e31db.tar.gz garage-1ecd88c01f0857139921214a264128e5639e31db.zip |
Merge pull request 'Update rust toolchain to 1.68 and simplify Nix stuff' (#554) from nix-update-simplify into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/554
Diffstat (limited to 'nix/compile.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 54e920db..c2f557da 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.63.0"; + rustVersion = "1.68.0"; extraRustComponents = [ "clippy" ]; } else { rustToolchain = pkgs.symlinkJoin { |