chore(deps): update dependencies to latest compatible + safe majors - #8
Open
jafreck wants to merge 1 commit into
Open
chore(deps): update dependencies to latest compatible + safe majors#8jafreck wants to merge 1 commit into
jafreck wants to merge 1 commit into
Conversation
Bump all dependencies to their latest semver-compatible versions via `cargo update`, plus non-breaking major upgrades: - safetensors 0.7 -> 0.8 - tokenizers 0.22 -> 0.23 - criterion 0.5 -> 0.8 (dev/bench only) Validated: cargo build/test/clippy -D warnings/fmt/doc all green across the workspace (full test suite passes).
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
Refreshes all dependencies to their latest semver-compatible versions
(
cargo update) and applies all available major (incompatible) upgrades,each verified non-breaking. No source-code changes — manifests +
Cargo.lockonly.Major upgrades applied
safetensors0.7 -> 0.8tokenizers0.22 -> 0.23criterion0.5 -> 0.8 (dev / benchmarks only)Plus all semver-compatible bumps via
cargo update(e.g.rayon1.11 -> 1.12).Validation
Ran the full CI suite locally (macOS, protoc + test fixtures present):
cargo build --workspace— passingcargo test --workspace— passing (entire suite, 0 failures)cargo clippy --workspace -- -D warnings— passingcargo fmt --all -- --check— passingcargo doc --workspace --no-deps— passingNote (pre-existing, out of scope)
cargo bench/cargo check --benchessurfaces broken benches inmil-rs(
benches/weight_formats.rs,benches/passes.rs) that reference removedfunctions (
read_gguf,read_safetensors,weights_to_program,OpSubstitutionPass). This is unrelated to the dependency bumps and predatesthis branch; CI does not compile benches so it is not blocking.