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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-02-15
toolchain: nightly-2025-06-01
components: rust-src
- env:
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="linux_raw"
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
targets: ${{ matrix.target.target }}
toolchain: nightly-2024-10-24
toolchain: nightly-2025-06-01
components: rust-src
- uses: Swatinem/rust-cache@v2
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nopanic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-10-14
toolchain: nightly-2025-06-01
components: rust-src
- run: cargo build --release
- run: cargo build --release --target=x86_64-win7-windows-msvc -Zbuild-std="std,panic_abort"
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
# Win7 targets are Tier3, so pin a nightly where libstd builds.
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-05-20
toolchain: nightly-2025-06-01
components: rust-src
- uses: Swatinem/rust-cache@v2
- run: cargo test --target=x86_64-win7-windows-msvc -Z build-std --features=std
Expand All @@ -146,7 +146,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-10-08
toolchain: nightly-2025-06-01
components: rust-src
- env:
RUSTFLAGS: -Dwarnings -Zsanitizer=memory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Fixed Nigthly version is used to prevent
# CI failures which are not relevant to PR changes
# on introduction of new Clippy lints.
toolchain: nightly-2024-10-08
toolchain: nightly-2025-06-01
components: clippy,rust-src
- name: std feature
run: cargo clippy --features std
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
# We need Nightly for doc_auto_cfg
toolchain: nightly-2024-09-04
toolchain: nightly-2025-06-01
- uses: Swatinem/rust-cache@v2
- name: Generate Docs
env:
Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ impl fmt::Display for Error {
if #[cfg(feature = "std")] {
std::io::Error::from_raw_os_error(errno).fmt(f)
} else {
write!(f, "OS Error: {}", errno)
write!(f, "OS Error: {errno}")
}
}
} else if let Some(desc) = self.internal_desc() {
Expand Down
Loading