Upgrading to rust 1.78.

This commit is contained in:
Nicolas Patry 2024-05-02 17:07:24 +02:00
parent 65539b743e
commit 568d6094b5
5 changed files with 9 additions and 11 deletions

View File

@ -33,10 +33,9 @@ jobs:
- name: Install Rust - name: Install Rust
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
# Released on: 28 December, 2023 # Released on: 02 May, 2024
# Branched from master on: 10 November, 2023 # https://releases.rs/docs/1.78.0/
# https://releases.rs/docs/1.75.0/ toolchain: 1.78.0
toolchain: 1.75.0
override: true override: true
components: rustfmt, clippy components: rustfmt, clippy
- name: Install Protoc - name: Install Protoc

View File

@ -1,5 +1,5 @@
# Rust builder # Rust builder
FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef FROM lukemathwalker/cargo-chef:latest-rust-1.78 AS chef
WORKDIR /usr/src WORKDIR /usr/src
ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

View File

@ -1,5 +1,5 @@
# Rust builder # Rust builder
FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef FROM lukemathwalker/cargo-chef:latest-rust-1.78 AS chef
WORKDIR /usr/src WORKDIR /usr/src
ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

View File

@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef FROM lukemathwalker/cargo-chef:latest-rust-1.78 AS chef
WORKDIR /usr/src WORKDIR /usr/src
ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

View File

@ -1,6 +1,5 @@
[toolchain] [toolchain]
# Released on: 28 December, 2023 # Released on: 02 May, 2024
# Branched from master on: 10 November, 2023 # https://releases.rs/docs/1.78.0/
# https://releases.rs/docs/1.75.0/ channel = "1.78.0"
channel = "1.75.0"
components = ["rustfmt", "clippy"] components = ["rustfmt", "clippy"]