Test CI passes#1
Merged
Merged
Conversation
- CI: test matrix (linux x86_64/x86-64-v3/aarch64, macOS aarch64, Windows), fmt, clippy, MSRV 1.85, rustsec/audit-check - Release: 9 binary variants (incl. SIMD target-cpu=x86-64-v3/v4 and neoverse-v1), multi-arch GHCR Docker images, SIMD-tagged Docker images, tag + release + binary upload, crates.io publish (gated off pending a free crate name) - Dockerfile: pure-Rust two-stage build - build.rs: embeds GIT_SHORT_HASH and BUILD_TIMESTAMP - Cargo.toml: full crates.io metadata, [[bin]], release profile tuned for the aligner (fat LTO + codegen-units=1), CI overrides to thin LTO - CHANGELOG.md: stub with format the release workflow parses
- sort_by(cmp) → sort_by_key(Reverse(...)) (unnecessary_sort_by, new in
clippy 1.95)
- manual `if n > 0 { a / n } else { 0 }` → checked_div().unwrap_or(0)
(manual_checked_ops, new in clippy 1.95)
- bump MSRV from 1.85 to 1.88: the codebase uses let-chains in &&
expressions, which stabilised in 1.88
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.
No description provided.