Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# Disabled due to issues with cross-rs
#x86_64-pc-windows-gnu,
]
channel: [1.74.0, nightly]
channel: [1.80.0, nightly]
include:
- os: macos-latest
target: aarch64-apple-darwin
Expand All @@ -65,10 +65,10 @@ jobs:
channel: nightly
- os: macos-latest
target: aarch64-apple-darwin
channel: 1.74.0
channel: 1.80.0
- os: windows-latest
target: x86_64-pc-windows-msvc
channel: 1.74.0
channel: 1.80.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
channel: beta
Expand All @@ -81,12 +81,8 @@ jobs:
needs: basics
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@1.65.0 # MSRV
- run: cargo +nightly generate-lockfile -Z direct-minimal-versions
- env:
TARGET: x86_64-unknown-linux-gnu
run: sh ci/run.sh
- run: cargo install cargo-msrv
- run: cargo msrv --workspace verify

dep_of_std:
runs-on: ubuntu-latest
Expand Down
3 changes: 1 addition & 2 deletions src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5519,8 +5519,7 @@ mod test_map {
map.insert(2, 1);
map.insert(3, 4);

#[allow(clippy::no_effect)] // false positive lint
map[&4];
_ = map[&4];
}

#[test]
Expand Down
Loading