From af8809e21db5278f450f024055add90a4e4b2791 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Thu, 25 Jul 2024 14:17:33 -0700 Subject: [PATCH] Upgrade to Rust 1.80.0. The release announcement is here: https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- rust-toolchain | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba7d9d8..c809d02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: docker run --rm \ -v $PWD:/code \ -w /code \ - rust:1.79.0-alpine3.20 \ + rust:1.80.0-alpine3.20 \ sh -c " apk add cmake make musl-dev perl && addgroup -g $(id -g) build && diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 621196c..a120b5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,7 +68,7 @@ jobs: docker run --rm \ -v $PWD:/code \ -w /code \ - rust:1.79.0-alpine3.20 \ + rust:1.80.0-alpine3.20 \ sh -c " apk add cmake make musl-dev perl && addgroup -g $(id -g) build && diff --git a/rust-toolchain b/rust-toolchain index 5769dd6..f82e835 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -2,7 +2,7 @@ # N.B.: Update .github and .circleci yaml to use a matching image, if available. # Although a version match is not required (cargo downloads and installs the # toolchain described here if not present), it does speed up CI builds. -channel = "1.79.0" +channel = "1.80.0" components = [ "cargo", "clippy",