Skip to content

Commit bcde73e

Browse files
github-actions[bot]bgilbertcecton
authored
cargo: update (#111)
Co-authored-by: bgilbert <[email protected]> Co-authored-by: Cecile Tonglet <[email protected]>
1 parent 504fcba commit bcde73e

File tree

3 files changed

+82
-53
lines changed

3 files changed

+82
-53
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- ubuntu-latest
2020
- windows-latest
2121
- macos-latest
22+
- macos-11
2223
rust:
2324
- stable
2425
- 1.46.0 # lib MSRV
@@ -33,6 +34,15 @@ jobs:
3334
no-lock: 1
3435
- rust: 1.60.0
3536
rust-args: --all-features
37+
exclude:
38+
# rust < 1.54 does not work on macos >= 12:
39+
# https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/.E2.9C.94.20How.20can.20I.20fix.20Rust.201.2E53.2E0.20or.20earlier.20to.20run.20on.20macOS.2012.2E6.3F/near/299263887
40+
- os: macos-latest
41+
rust: 1.46.0
42+
- os: macos-11
43+
rust: stable
44+
- os: macos-11
45+
rust: 1.60.0
3646
runs-on: ${{ matrix.os }}
3747
steps:
3848
- name: Checkout source

Cargo.lock

Lines changed: 71 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,7 @@ impl IndexMut<u32> for GPT {
12961296

12971297
#[cfg(test)]
12981298
mod test {
1299-
#![allow(clippy::blacklisted_name)]
1299+
#![allow(clippy::disallowed_names)]
13001300

13011301
use super::*;
13021302
use std::fs;

0 commit comments

Comments
 (0)