fix(deps): clear all three advisories (anyhow, crossbeam-epoch, scc) - #1037
Merged
joshrotenberg merged 3 commits intoJul 23, 2026
Merged
Conversation
Lockfile-only bumps to green the Security Audit and Cargo Deny checks, which fail on main for two dev-only advisories: - RUSTSEC-2026-0204 (crossbeam-epoch 0.9.18, via criterion): update to 0.9.20. crossbeam-deque requires ^0.9, so this is semver-compatible. - RUSTSEC-2026-0205 (scc 2.4.0, via serial_test): update serial_test 3.2.0 -> 3.5.0, which dropped its scc dependency, removing scc (and sdd) from the tree entirely. scc has no 2.x release above 2.4.0. Both crates reached the tree through dev-dependencies only, so no shipped binary was affected; the value is restoring a meaningful security signal on scheduled runs and contributor PRs. The remaining advisory, RUSTSEC-2026-0190 (anyhow), is handled by #1034. This PR clears the other two; CI goes green once both land. Closes #1035
Fold in the anyhow bump so this PR clears all three outstanding advisories at once and Security Audit / Cargo Deny go green on the PR itself, rather than each of two PRs clearing a subset and neither passing. Supersedes #1034. anyhow is a runtime dependency, so the full gate was run: fmt, clippy --all-targets --all-features -D warnings, and cargo test --workspace --all-features all pass.
joshrotenberg
marked this pull request as ready for review
July 23, 2026 19:29
joshrotenberg
deleted the
fix/1035-clear-crossbeam-serial-test-advisories
branch
July 23, 2026 20:30
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
Clears every outstanding RUSTSEC advisory in one PR so Security Audit and Cargo Deny go green on the PR itself. This supersedes #1034: each of #1034 (anyhow) and the original scope here (crossbeam + scc) cleared only a subset, so neither passed its own advisory checks. Consolidated here, all three are gone.
anyhowcrossbeam-epochsccLockfile-only; no manifest change.
Validation
cargo deny check advisories:advisories ok.cargo fmt --all -- --check,cargo clippy --all-targets --all-features -- -D warnings: clean.cargo test --workspace --all-features: all pass (anyhow is runtime, and serial_test is used across all three suites).Closes
Closes #1035. Supersedes #1034 (close that one; the anyhow bump is included here).