Skip to content

Commit 45ed490

Browse files
committed
Merge #451: docs: [#444] mark RUSTSEC-2026-0097 resolved — rand 0.9.3 already in use
6ff2169 docs: [#444] mark issue as resolved — rand 0.9.3 already in Cargo.lock (Jose Celano) Pull request description: ## Summary Issue #444 was opened automatically by the cargo-audit CI workflow reporting `rand 0.9.2` as affected by RUSTSEC-2026-0097. Investigation confirms the issue is already resolved: `Cargo.toml` declares `rand = "0.9"` which resolves to `rand 0.9.3` (the patched release) in `Cargo.lock`. The advisory has zero findings for rand 0.9.x in `cargo audit` output. ## Validation ``` cargo tree -p rand@0.9.3 ``` ```text rand v0.9.3 ├── rand_chacha v0.9.0 │ ├── ppv-lite86 v0.2.21 │ │ └── zerocopy v0.8.48 │ └── rand_core v0.9.5 │ └── getrandom v0.3.4 ├── ... └── rand_core v0.9.5 (*) ``` ``` cargo audit ``` ```text warning: 1 allowed warning found ``` (Only `rand 0.8.5` via `tera` is flagged — tracked separately in #443.) ## Changes - `docs/issues/444-rand-0.9.2-rustsec.md`: updated spec with investigation results and outcome Closes #444 ACKs for top commit: josecelano: ACK 6ff2169 Tree-SHA512: 77873a9515d100023036afe3b367f20cabfc8ce1bd9df16decc6a6b3b78f73cc2930b0836234fccfbd79399c57d5889c13e9e80dd2d77ce53e519f6d16f07cb6
2 parents eea45ce + 6ff2169 commit 45ed490

1 file changed

Lines changed: 8 additions & 12 deletions

File tree

docs/issues/444-rand-0.9.2-rustsec.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,16 @@ Expected `cargo audit` output: no finding for `rand 0.9.x`.
4545

4646
## Steps
4747

48-
- [ ] Run `cargo tree -p rand@0.9.3` — confirm it resolves without error
49-
- [ ] Run `cargo audit` — confirm no finding for RUSTSEC-2026-0097 on rand 0.9.x
48+
- [x] Run `cargo tree -p rand@0.9.3` — confirm it resolves without error
49+
- [x] Run `cargo audit` — confirm no finding for RUSTSEC-2026-0097 on rand 0.9.x
5050
- [ ] Post a comment on #444 with both outputs
5151
- [ ] Close #444
5252

53-
## If the audit still reports rand 0.9.2
54-
55-
Run `cargo tree -i rand@0.9.2` to find which crate pins it, then apply
56-
`cargo update rand` or bump that crate.
57-
5853
## Outcome
5954

60-
<!-- Fill in after doing the work -->
61-
62-
- Date:
63-
- Result:
64-
- Comment/PR:
55+
- Date: 2026-04-14
56+
- Result: **Resolved.** `cargo tree -p rand@0.9.3` resolves cleanly to `rand 0.9.3`
57+
(patched). `cargo audit` reports only `rand 0.8.5` (tracked separately in #443)
58+
— zero finding for `rand 0.9.x`. Issue #444 was opened before `Cargo.lock` was
59+
updated to `rand 0.9.3`.
60+
- Comment/PR: <!-- fill in after posting the comment and closing #444 -->

0 commit comments

Comments
 (0)