chore: refresh root and fuzz Cargo lockfiles#137
Merged
Conversation
Run `cargo update` on both the root and fuzz workspaces to pull in compatible dependency updates. Notable bumps include tokio 1.43.0 -> 1.52.3, hyper 1.5.2 -> 1.10.1, axum 0.8.1 -> 0.8.9, ring 0.17.8 -> 0.17.14, and (fuzz) libfuzzer-sys 0.4.6 -> 0.4.13. The fuzz path entry for fastwebsockets also normalizes to the current 0.10.0. Verified with `cargo build --locked --all-features --all-targets`, `cargo test --locked --all-features`, `cargo fmt -- --check`, and `cargo check --locked` in fuzz/ — all pass. Co-Authored-By: Divy Srivastava <me@littledivy.com>
littledivy
approved these changes
Jun 5, 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.
Refreshes the committed root and
fuzz/Cargo lockfiles viacargo update, pulling in compatible (semver-safe) dependency drift. This is scoped to lockfile maintenance — noCargo.tomlmanifest changes.Notable bumps
tokio 1.43.0 -> 1.52.3,hyper 1.5.2 -> 1.10.1,axum 0.8.1 -> 0.8.9,ring 0.17.8 -> 0.17.14, plus ~100 other packageslibfuzzer-sys 0.4.6 -> 0.4.13and friends; the local path entry also normalizesfastwebsocketsto the current0.10.0Verification
All run against the pinned
1.92.0toolchain:cargo build --locked --all-features --all-targets✅cargo test --locked --all-features✅ (all suites incl.upgrade, doctests, UI)cargo fmt -- --check✅cargo check --lockedinfuzz/✅Closes denoland/divybot#477