From 83d57bf35433a04a254fb8d699fdd698980734c7 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 20 Dec 2024 09:00:01 +0100 Subject: [PATCH] chore: update Rust toolchain to version 1.83 - Upgraded the Rust version in rust-toolchain.toml to 1.83. - Ensures compatibility and access to the latest features and fixes. Signed-off-by: Harald Hoyer --- flake.lock | 6 +++--- packages/teepot/default.nix | 1 + rust-toolchain.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index c44d03c..59217d8 100644 --- a/flake.lock +++ b/flake.lock @@ -233,11 +233,11 @@ ] }, "locked": { - "lastModified": 1732761189, - "narHash": "sha256-A2a4Cw66421Wojv1uqSGkD1XW960uJ7wHuwmvGCUJ8s=", + "lastModified": 1734661750, + "narHash": "sha256-BI58NBdimxu1lnpOrG9XxBz7Cwqy+qIf99zunWofX5w=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "fd0e3bf854b937632c92819d55d4ff8a130d5658", + "rev": "7d3d910d5fd575e6e8c5600d83d54e5c47273bfe", "type": "github" }, "original": { diff --git a/packages/teepot/default.nix b/packages/teepot/default.nix index fb0e3fa..91ce8f9 100644 --- a/packages/teepot/default.nix +++ b/packages/teepot/default.nix @@ -30,6 +30,7 @@ ]; postInstall = '' removeReferencesToVendoredSources "$out" "$cargoVendorDir" + removeReferencesToVendoredSources "$out" "${teepotCrate.rustVersion}/lib/rustlib/" mkdir -p $out/nix-support for i in $outputs; do [[ $i == "out" ]] && continue diff --git a/rust-toolchain.toml b/rust-toolchain.toml index bac2303..dbe555f 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.78" +channel = "1.83" components = ["rustfmt", "clippy", "rust-src"]