chore(deps): update rust crate rand to 0.10.0 #36

Open
renovate wants to merge 1 commit from renovate/rand-0.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
rand (source) dependencies minor 0.9.00.10.0

Release Notes

rust-random/rand (rand)

v0.10.2

Compare Source

Fixes
  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#​1790)
Changes
  • Document required output order of fn partial_shuffle and apply #[must_use] (#​1769)
  • Avoid usage of unsafe in contexts where non-local memory corruption could invalidate contract (#​1791)

v0.10.1

Compare Source

This release includes a fix for a soundness bug; see #​1763.

Changes
  • Document panic behavior of make_rng and add #[track_caller] (#​1761)
  • Deprecate feature log (#​1763)

v0.10.0

Compare Source

Changes
  • The dependency on rand_chacha has been replaced with a dependency on chacha20. This changes the implementation behind StdRng, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in chacha20 instead of rand_chacha (#​1642).
  • Rename fns IndexedRandom::choose_multiple -> sample, choose_multiple_array -> sample_array, choose_multiple_weighted -> sample_weighted, struct SliceChooseIter -> IndexedSamples and fns IteratorRandom::choose_multiple -> sample, choose_multiple_fill -> sample_fill (#​1632)
  • Use Edition 2024 and MSRV 1.85 (#​1653)
  • Let Fill be implemented for element types, not sliceable types (#​1652)
  • Fix OsError::raw_os_error on UEFI targets by returning Option<usize> (#​1665)
  • Replace fn TryRngCore::read_adapter(..) -> RngReadAdapter with simpler struct RngReader (#​1669)
  • Remove fns SeedableRng::from_os_rng, try_from_os_rng (#​1674)
  • Remove Clone support for StdRng, ReseedingRng (#​1677)
  • Use postcard instead of bincode to test the serde feature (#​1693)
  • Avoid excessive allocation in IteratorRandom::sample when amount is much larger than iterator size (#​1695)
  • Rename os_rng -> sys_rng, OsRng -> SysRng, OsError -> SysError (#​1697)
  • Rename Rng -> RngExt as upstream rand_core has renamed RngCore -> Rng (#​1717)
Additions
  • Add fns IndexedRandom::choose_iter, choose_weighted_iter (#​1632)
  • Pub export Xoshiro128PlusPlus, Xoshiro256PlusPlus prngs (#​1649)
  • Pub export ChaCha8Rng, ChaCha12Rng, ChaCha20Rng behind chacha feature (#​1659)
  • Fn rand::make_rng() -> R where R: SeedableRng (#​1734)
Removals

v0.9.5

Compare Source

What's Changed

Full Changelog: https://github.com/rust-random/rand/compare/0.9.4...0.9.5

v0.9.4

Compare Source

Fixes

Full Changelog: https://github.com/rust-random/rand/compare/0.9.3...0.9.4

v0.9.3

Compare Source

This release back-ports a fix from v0.10. See also [#​1763].

Changes

Full Changelog: https://github.com/rust-random/rand/compare/0.9.2...0.9.3


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rand](https://rust-random.github.io/book) ([source](https://github.com/rust-random/rand)) | dependencies | minor | `0.9.0` → `0.10.0` | --- ### Release Notes <details> <summary>rust-random/rand (rand)</summary> ### [`v0.10.2`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#0102--2026-07-02) [Compare Source](https://github.com/rust-random/rand/compare/0.10.1...0.10.2) ##### Fixes - Fix possible memory safety violation due to deserialization of `UniformChar` from bad source ([#&#8203;1790]) ##### Changes - Document required output order of fn `partial_shuffle` and apply `#[must_use]` ([#&#8203;1769]) - Avoid usage of `unsafe` in contexts where non-local memory corruption could invalidate contract ([#&#8203;1791]) [#&#8203;1769]: https://github.com/rust-random/rand/pull/1769 [#&#8203;1790]: https://github.com/rust-random/rand/pull/1790 [#&#8203;1791]: https://github.com/rust-random/rand/pull/1791 ### [`v0.10.1`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#0101--2026-02-11) [Compare Source](https://github.com/rust-random/rand/compare/0.10.0...0.10.1) This release includes a fix for a soundness bug; see [#&#8203;1763]. ##### Changes - Document panic behavior of `make_rng` and add `#[track_caller]` ([#&#8203;1761]) - Deprecate feature `log` ([#&#8203;1763]) [#&#8203;1761]: https://github.com/rust-random/rand/pull/1761 [#&#8203;1763]: https://github.com/rust-random/rand/pull/1763 ### [`v0.10.0`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#0100---2026-02-08) [Compare Source](https://github.com/rust-random/rand/compare/0.9.5...0.10.0) ##### Changes - The dependency on `rand_chacha` has been replaced with a dependency on `chacha20`. This changes the implementation behind `StdRng`, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in `chacha20` instead of `rand_chacha` ([#&#8203;1642]). - Rename fns `IndexedRandom::choose_multiple` -> `sample`, `choose_multiple_array` -> `sample_array`, `choose_multiple_weighted` -> `sample_weighted`, struct `SliceChooseIter` -> `IndexedSamples` and fns `IteratorRandom::choose_multiple` -> `sample`, `choose_multiple_fill` -> `sample_fill` ([#&#8203;1632]) - Use Edition 2024 and MSRV 1.85 ([#&#8203;1653]) - Let `Fill` be implemented for element types, not sliceable types ([#&#8203;1652]) - Fix `OsError::raw_os_error` on UEFI targets by returning `Option<usize>` ([#&#8203;1665]) - Replace fn `TryRngCore::read_adapter(..) -> RngReadAdapter` with simpler struct `RngReader` ([#&#8203;1669]) - Remove fns `SeedableRng::from_os_rng`, `try_from_os_rng` ([#&#8203;1674]) - Remove `Clone` support for `StdRng`, `ReseedingRng` ([#&#8203;1677]) - Use `postcard` instead of `bincode` to test the serde feature ([#&#8203;1693]) - Avoid excessive allocation in `IteratorRandom::sample` when `amount` is much larger than iterator size ([#&#8203;1695]) - Rename `os_rng` -> `sys_rng`, `OsRng` -> `SysRng`, `OsError` -> `SysError` ([#&#8203;1697]) - Rename `Rng` -> `RngExt` as upstream `rand_core` has renamed `RngCore` -> `Rng` ([#&#8203;1717]) ##### Additions - Add fns `IndexedRandom::choose_iter`, `choose_weighted_iter` ([#&#8203;1632]) - Pub export `Xoshiro128PlusPlus`, `Xoshiro256PlusPlus` prngs ([#&#8203;1649]) - Pub export `ChaCha8Rng`, `ChaCha12Rng`, `ChaCha20Rng` behind `chacha` feature ([#&#8203;1659]) - Fn `rand::make_rng() -> R where R: SeedableRng` ([#&#8203;1734]) ##### Removals - Removed `ReseedingRng` ([#&#8203;1722]) - Removed unused feature "nightly" ([#&#8203;1732]) - Removed feature `small_rng` ([#&#8203;1732]) [#&#8203;1632]: https://github.com/rust-random/rand/pull/1632 [#&#8203;1642]: https://github.com/rust-random/rand/pull/1642 [#&#8203;1649]: https://github.com/rust-random/rand/pull/1649 [#&#8203;1652]: https://github.com/rust-random/rand/pull/1652 [#&#8203;1653]: https://github.com/rust-random/rand/pull/1653 [#&#8203;1659]: https://github.com/rust-random/rand/pull/1659 [#&#8203;1665]: https://github.com/rust-random/rand/pull/1665 [#&#8203;1669]: https://github.com/rust-random/rand/pull/1669 [#&#8203;1674]: https://github.com/rust-random/rand/pull/1674 [#&#8203;1677]: https://github.com/rust-random/rand/pull/1677 [#&#8203;1693]: https://github.com/rust-random/rand/pull/1693 [#&#8203;1695]: https://github.com/rust-random/rand/pull/1695 [#&#8203;1697]: https://github.com/rust-random/rand/pull/1697 [#&#8203;1717]: https://github.com/rust-random/rand/pull/1717 [#&#8203;1722]: https://github.com/rust-random/rand/pull/1722 [#&#8203;1732]: https://github.com/rust-random/rand/pull/1732 [#&#8203;1734]: https://github.com/rust-random/rand/pull/1734 ### [`v0.9.5`](https://github.com/rust-random/rand/releases/tag/0.9.5) [Compare Source](https://github.com/rust-random/rand/compare/0.9.4...0.9.5) #### What's Changed - rand v0.9.5: backport [#&#8203;1790](https://github.com/rust-random/rand/issues/1790) by [@&#8203;dhardy](https://github.com/dhardy) in [#&#8203;1803](https://github.com/rust-random/rand/pull/1803) **Full Changelog**: <https://github.com/rust-random/rand/compare/0.9.4...0.9.5> ### [`v0.9.4`](https://github.com/rust-random/rand/releases/tag/0.9.4) [Compare Source](https://github.com/rust-random/rand/compare/0.9.3...0.9.4) ##### Fixes - Fix doc build ([#&#8203;1766]) [#&#8203;1766]: https://github.com/rust-random/rand/pull/1766 **Full Changelog**: <https://github.com/rust-random/rand/compare/0.9.3...0.9.4> ### [`v0.9.3`](https://github.com/rust-random/rand/releases/tag/0.9.3) [Compare Source](https://github.com/rust-random/rand/compare/0.9.2...0.9.3) This release back-ports a fix from v0.10. See also \[[#&#8203;1763](https://github.com/rust-random/rand/issues/1763)]. ##### Changes - Deprecate feature `log` ([#&#8203;1764](https://github.com/rust-random/rand/issues/1764)) - Replace usages of `doc_auto_cfg` ([#&#8203;1764](https://github.com/rust-random/rand/issues/1764)) **Full Changelog**: <https://github.com/rust-random/rand/compare/0.9.2...0.9.3> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjkiLCJ1cGRhdGVkSW5WZXIiOiI0NC4zMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate force-pushed renovate/rand-0.x from 9bad3b07cb to a4a5ea76d6 2026-03-01 12:26:04 +00:00 Compare
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-04 00:29:06 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-05 05:02:39 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-05 09:48:10 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-05 20:17:49 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-11 00:02:32 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-13 13:38:57 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-13 13:46:15 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-17 22:57:45 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 09:30:09 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 10:08:17 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 10:12:44 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 10:18:17 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 10:31:12 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 11:03:38 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 11:20:03 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 12:17:18 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 12:23:15 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 12:30:17 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 13:02:35 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 13:11:15 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 13:37:46 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 14:18:09 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 15:07:40 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 15:18:01 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 15:23:29 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 16:02:54 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 16:12:25 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 16:17:47 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 16:23:22 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 17:08:28 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 17:13:00 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 17:19:17 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 17:31:44 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 17:41:48 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 18:02:51 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 18:08:11 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 18:22:44 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 18:29:58 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 18:39:34 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 19:22:28 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 20:12:08 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 20:22:45 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 20:39:03 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 21:07:50 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 21:12:33 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 21:39:19 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 22:09:35 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 23:08:55 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 23:15:06 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-20 23:27:04 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-20 23:43:48 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 00:08:29 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 00:30:00 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 01:02:49 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 01:07:53 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 01:17:57 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 01:23:34 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 02:12:02 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 02:16:57 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 02:23:11 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 02:39:37 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 03:02:48 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 04:08:41 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 04:13:38 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 04:18:29 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 04:24:09 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 05:02:35 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 05:07:18 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 05:12:38 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 05:18:27 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-04-21 05:31:07 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-04-21 06:02:45 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-05-02 00:03:51 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-05-06 20:17:20 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-05-10 05:26:49 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-05-10 05:37:10 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-05-17 01:04:06 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-06-08 00:05:27 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-06-21 03:03:27 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-06-29 23:06:46 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-06-30 12:05:12 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-06-30 13:04:35 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-01 00:04:00 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-01 01:06:20 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 00:03:59 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-02 01:04:23 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 12:04:35 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-02 13:05:56 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 15:04:21 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-02 16:04:59 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 17:03:11 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-02 19:03:15 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 20:03:34 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-02 22:03:21 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-02 23:04:24 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 01:05:30 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 03:04:54 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 06:03:55 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 08:03:16 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 09:05:42 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 12:05:28 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 13:03:13 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 15:04:19 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 16:04:10 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 17:03:53 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-03 20:03:27 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-03 23:03:29 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 01:03:27 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 02:03:02 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 03:04:01 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 04:05:31 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 05:03:38 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 06:03:13 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 08:03:24 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 09:03:36 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 10:03:17 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 11:03:14 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 13:03:41 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 15:03:47 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-04 21:03:55 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-04 22:03:04 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 02:03:50 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 04:03:12 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 05:04:31 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 06:04:49 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 08:03:05 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 09:03:16 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 13:03:16 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 15:03:44 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 16:03:22 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 18:03:48 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-05 21:05:44 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-05 23:04:54 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-06 04:03:55 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-06 06:03:33 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-07-06 07:03:35 +00:00
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to Update Rust crate rand to 0.10.0 2026-07-06 08:00:59 +00:00
renovate changed title from Update Rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 2026-08-14 23:01:46 +00:00
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/rand-0.x:renovate/rand-0.x
git switch renovate/rand-0.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/rand-0.x
git switch renovate/rand-0.x
git rebase main
git switch main
git merge --ff-only renovate/rand-0.x
git switch renovate/rand-0.x
git rebase main
git switch main
git merge --no-ff renovate/rand-0.x
git switch main
git merge --squash renovate/rand-0.x
git switch main
git merge --ff-only renovate/rand-0.x
git switch main
git merge renovate/rand-0.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
jmarya/comrade!36
No description provided.