From 44ab17c6a04e645b6a4e7bd61d6c46077c3e1566 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Fri, 6 Sep 2024 07:01:01 -0700 Subject: [PATCH] Upgrade to Rust 1.81.0. (#241) The release announcement is here: https://blog.rust-lang.org/2024/09/05/Rust-1.81.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 732f139..23e775c 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.80.1-alpine3.20 \ + rust:1.81.0-alpine3.20 \ sh -c " apk add musl-dev && addgroup -g $(id -g) build && diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7747ed..9d0ada6 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.80.1-alpine3.20 \ + rust:1.81.0-alpine3.20 \ sh -c " apk add musl-dev && addgroup -g $(id -g) build && diff --git a/rust-toolchain b/rust-toolchain index f1279af..392d051 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.80.1" +channel = "1.81.0" components = [ "cargo", "clippy",