1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-06 22:45:40 +02:00

Updates for Rust 1.82 (#2449)

Rust 1.82 adds `&raw` expressions, and marks some attributes as unsafe.
This commit is contained in:
Andrew Walbran
2024-11-01 07:39:56 +00:00
committed by GitHub
parent 2bba470415
commit f8882190f3
24 changed files with 100 additions and 72 deletions

View File

@ -55,6 +55,9 @@ jobs:
- name: Setup Rust cache
uses: ./.github/workflows/setup-rust-cache
- name: Update Rust
run: rustup update
- name: Build Rust code
run: cargo build
@ -89,7 +92,9 @@ jobs:
sudo apt install gcc-aarch64-linux-gnu
- name: Install toolchain
run: rustup target add ${{ matrix.target }}
run: |
rustup update
rustup target add ${{ matrix.target }}
- name: Build Rust code
working-directory: ${{ matrix.directory }}
@ -140,6 +145,9 @@ jobs:
sudo apt update
sudo apt install gettext
- name: Update Rust
run: rustup update
- name: Install mdbook
uses: ./.github/workflows/install-mdbook