chore: bump sysinfo to 0.39 and raise MSRV to Rust 1.95#258
Merged
Conversation
sysinfo 0.39 raised its minimum supported Rust version to 1.95 (0.38 required 1.88), so adopting it requires moving the project MSRV, the Docker build base, and every Launchpad PPA toolchain reference from 1.93 to 1.95. The ~lablup/+archive/ubuntu/rustc-release dependency PPA now provides rustc-1.95. sysinfo 0.39's only breaking change is that MSRV bump; none of the public APIs this codebase uses changed, so no source edits were needed. clippy and the full test suite pass unchanged on Rust 1.95. Changes: - Cargo.toml: sysinfo 0.38 -> 0.39, rust-version 1.93 -> 1.95 (plus Cargo.lock) - Dockerfile: rust:1.93-slim -> rust:1.95-slim - .github/workflows/launchpad_ppa.yml: vendor_rust 1.93.0 -> 1.95.0 and the "Rust 1.95+" toolchain descriptions - debian/control and debian/control.source: build-deps to rustc-1.95 | rustc (>= 1.95) and cargo-1.95 | cargo (>= 1.95) - debian/rules, rules.source, rules.launchpad, rules.launchpad-simple: toolchain detection prefers rustc-1.95/cargo-1.95 and the version guard requires >= 1.95 - debian/README.packaging: Rust 1.95 requirement, with the Ubuntu 26.04 (Resolute) note updated since its archived 1.93 no longer meets the floor Historical debian/changelog entries are left intact. Closes #257
This was referenced May 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sysinfo0.39 raised its MSRV to Rust 1.95 (0.38 required 1.88), so adopting it requires moving the project MSRV, the Docker build base, and every Launchpad PPA toolchain reference from 1.93 to 1.95. The~lablup/+archive/ubuntu/rustc-releasedependency PPA now providesrustc-1.95.sysinfo0.39's only breaking change is that MSRV bump; none of the public APIs this codebase uses changed, so no source edits were needed.Changes
Cargo.toml:sysinfo0.38 -> 0.39,rust-version1.93 -> 1.95 (plusCargo.lock, which moves to sysinfo 0.39.2 and pulls in its new objc2/dispatch2 deps)Dockerfile:rust:1.93-slim->rust:1.95-slim.github/workflows/launchpad_ppa.yml:vendor_rust1.93.0 -> 1.95.0 (3 matrix entries) and the "Rust 1.95+" toolchain descriptionsdebian/control+debian/control.source: build-deps torustc-1.95 | rustc (>= 1.95)andcargo-1.95 | cargo (>= 1.95)debian/rules,rules.source,rules.launchpad,rules.launchpad-simple: toolchain detection prefersrustc-1.95/cargo-1.95, version guard requires>= 1.95debian/README.packaging: documents the 1.95 requirement; the Ubuntu 26.04 (Resolute) note now reflects that its archived 1.93 is below the new floor and also needs the PPAdebian/changelogentries left intactVerification (local Rust 1.95.0 toolchain)
cargo build --release: Finishedcargo clippy --all-targets: no warningscargo test: all suites pass (1003 + 1169 + smaller suites + 23 doctests, 0 failed)Note:
release.ymlalready usesdtolnay/rust-toolchain@stable(currently 1.95), so it needs no pin change.Closes #257