deps: bump libloading from 0.8.9 to 0.9.0 - #4
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Ttimmahlax
pushed a commit
that referenced
this pull request
Aug 20, 2026
…code #3 bounds-check audit — DONE, and the headline is that there is nothing to fix on the hot path: 39 panic_bounds_check sites lib-wide, ZERO reachable from the shipped malloc / free / calloc fast paths (confirmed on the override .so). All 39 are on slow/cold paths (segment alloc/free, visitors, arena, teardown, and 2 on the malloc_generic refill). The safe-Rust allocator pays no bounds-check tax where it matters. The 2 refill checks resisted a min(MAX_NORMAL_BIN) clamp on bin (count unchanged) and sit on a cold path — not worth chasing, recorded so the dead end is not re-explored. #4 update_direct recompute — ASSESSED, premise false. bin_size(bin) for the common bin <= 8 is bin << 3 (a shift), and bin_size(bin-1) runs only for bin > 8. There is no costly recompute on the hot path, and replacing the shift with a table/stored load would reintroduce a panic_bounds_check (bin from bins::bin is unbounded to LLVM) that costs more than it saves. Left as-is. Both are honest negative results with the evidence attached, which is the point of the register: they stop the next person re-attempting a dead end. The Tier-2 win that DID land is #5 (calloc -20.62 Ir/op), committed separately. Co-Authored-By: Claude Fable 5 (1M context) <noreply@anthropic.com>
Bumps [libloading](https://github.com/nagisa/rust_libloading) from 0.8.9 to 0.9.0. - [Commits](nagisa/rust_libloading@0.8.9...0.9.0) --- updated-dependencies: - dependency-name: libloading dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/cargo/libloading-0.9.0
branch
from
August 20, 2026 22:57
3666437 to
05fc645
Compare
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.
Bumps libloading from 0.8.9 to 0.9.0.
Commits
dab97c50.9.0 release ritese893804refactor: simplify null checks, remove some iffy implementations4b98285add no-std support