Fix CI issues and set MSRV to 1.95 - #21
Merged
Merged
Conversation
This commit fixes several CI-related issues: 1. Remove unnecessary unsafe blocks in cpuid.rs - In Rust 1.95+, __cpuid is a safe function - Removed unsafe wrappers around __cpuid calls - Function remains safe for all callers 2. Update dependencies to fix security advisories - Updated time crate from 0.3.45 to 0.3.54 (CVE fix) - Updated aws-lc-rs from 1.15.3 to 1.17.3 (multiple CVE fixes) - Updated bytes from 1.11.0 to 1.12.1 (integer overflow fix) - All cargo-deny advisories now resolved 3. Set MSRV to 1.95 - Required for safe __cpuid intrinsic - Added rust-version field to Cargo.toml - Added MSRV check job to CI workflow 4. Update typos.toml - Added exclusions for local untracked directories - Ensures local CI runs match GitHub Actions environment All CI checks now pass: - Format ✓ - Typos ✓ - Deny ✓ - Clippy ✓ - Tests ✓ - Build ✓ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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.
This commit fixes several CI-related issues:
Remove unnecessary unsafe blocks in cpuid.rs
Update dependencies to fix security advisories
Set MSRV to 1.95
Update typos.toml
All CI checks now pass: