Update Rust crate rand to 0.10.0 #29

Closed
spacebot wants to merge 1 commit from renovate/rand-0.x into main
Owner

This PR contains the following updates:

Package Type Update Change
rand (source) dependencies minor 0.8.50.10.0

Release Notes

rust-random/rand (rand)

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.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

v0.9.2

Compare Source

Deprecated
  • Deprecate rand::rngs::mock module and StepRng generator ([#​1634])
Additions
  • Enable WeightedIndex<usize> (de)serialization ([#​1646])

v0.9.1

Compare Source

Security and unsafe
  • Revise "not a crypto library" policy again (#​1565)
  • Remove zerocopy dependency from rand (#​1579)
Fixes
  • Fix feature simd_support for recent nightly rust (#​1586)
Changes
  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#​1623), reverting an undocumented change ([#​1382]) to the previous release.
Additions
  • Add rand::distr::Alphabetic distribution. (#​1587)
  • Re-export rand_core (#​1604)

v0.9.0

Compare Source

Security and unsafe
  • Policy: "rand is not a crypto library" (#​1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#​1379)
  • Use zerocopy to replace some unsafe code (#​1349, #​1393, #​1446, #​1502)
Dependencies
Features
  • Support std feature without getrandom or rand_chacha (#​1354)
  • Enable feature small_rng by default (#​1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#​1473)
  • Rename feature serde1 to serde (#​1477)
  • Rename feature getrandom to os_rng (#​1537)
  • Add feature thread_rng (#​1547)
API changes: rand_core traits
  • Add fn RngCore::read_adapter implementing std::io::Read (#​1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#​1273)
  • Add traits TryRngCore, TryCryptoRng (#​1424, #​1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#​1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#​1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#​1491)
API changes: Rng trait and top-level fns
  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#​1506)
  • Remove fn rand::random() from the prelude (#​1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#​1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#​1305, #​1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#​1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#​1505)
  • Annotate panicking methods with #[track_caller] (#​1442, #​1447)
API changes: RNGs
  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#​1455)
  • Remove first parameter (rng) of ReseedingRng::new (#​1533)
API changes: Sequences
  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#​1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#​1453, #​1469)
API changes: Distributions: renames
  • Rename module rand::distributions to rand::distr (#​1470)
  • Rename distribution Standard to StandardUniform (#​1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#​1548)
  • Rename trait distr::DistString -> distr::SampleString (#​1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#​1548)
API changes: Distributions
  • Relax Sized bound on Distribution<T> for &D (#​1278)
  • Remove impl of Distribution<Option<T>> for StandardUniform (#​1526)
  • Let distribution StandardUniform support all NonZero* types (#​1332)
  • Fns {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#​1229)
  • Distribution Uniform implements TryFrom instead of From for ranges (#​1229)
  • Add UniformUsize (#​1487)
  • Remove support for generating isize and usize values with StandardUniform, Uniform (except via UniformUsize) and Fill and usage as a WeightedAliasIndex weight (#​1487)
  • Add impl DistString for distributions Slice<char> and Uniform<char> (#​1315)
  • Add fn Slice::num_choices (#​1402)
  • Add fn p() for distribution Bernoulli to access probability (#​1481)
API changes: Weighted distributions
  • Add pub module rand::distr::weighted, moving WeightedIndex there (#​1548)
  • Add trait weighted::Weight, allowing WeightedIndex to trap overflow (#​1353)
  • Add fns weight, weights, total_weight to distribution WeightedIndex (#​1420)
  • Rename enum WeightedError to weighted::Error, revising variants (#​1382) and mark as #[non_exhaustive] (#​1480)
API changes: SIMD
  • Switch to std::simd, expand SIMD & docs (#​1239)
Reproducibility-breaking changes
  • Make ReseedingRng::reseed discard remaining data from the last block generated (#​1379)
  • Change fn SmallRng::seed_from_u64 implementation (#​1203)
  • Allow UniformFloat::new samples and UniformFloat::sample_single to yield high (#​1462)
  • Fix portability of distribution Slice (#​1469)
  • Make Uniform for usize portable via UniformUsize (#​1487)
  • Fix IndexdRandom::choose_multiple_weighted for very small seeds and optimize for large input length / low memory (#​1530)
Reproducibility-breaking optimisations
  • Optimize fn sample_floyd, affecting output of rand::seq::index::sample and rand::seq::SliceRandom::choose_multiple (#​1277)
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#​1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#​1272)
  • Optimize distribution Uniform: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #​1287)
  • Optimize fn sample_single_inclusive for floats (+~20% perf) (#​1289)
Other optimisations
  • Improve SmallRng initialization performance (#​1482)
  • Optimise SIMD widening multiply (#​1247)
Other
Documentation
  • Improve ThreadRng related docs (#​1257)
  • Docs: enable experimental --generate-link-to-definition feature (#​1327)
  • Better doc of crate features, use doc_auto_cfg (#​1411, #​1450)

v0.8.6

Compare Source

What's Changed

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

Changes
  • Drop the experimental simd_support feature.

New Contributors

Full Changelog: https://github.com/rust-random/rand/compare/0.8.5...0.8.6


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.

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.8.5` → `0.10.0` | --- ### Release Notes <details> <summary>rust-random/rand (rand)</summary> ### [`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.4...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.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> ### [`v0.9.2`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#092---2025-07-20) [Compare Source](https://github.com/rust-random/rand/compare/0.9.1...0.9.2) ##### Deprecated - Deprecate `rand::rngs::mock` module and `StepRng` generator (\[[#&#8203;1634](https://github.com/rust-random/rand/issues/1634)]) ##### Additions - Enable `WeightedIndex<usize>` (de)serialization (\[[#&#8203;1646](https://github.com/rust-random/rand/issues/1646)]) ### [`v0.9.1`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#091---2025-04-17) [Compare Source](https://github.com/rust-random/rand/compare/0.9.0...0.9.1) ##### Security and unsafe - Revise "not a crypto library" policy again ([#&#8203;1565]) - Remove `zerocopy` dependency from `rand` ([#&#8203;1579]) ##### Fixes - Fix feature `simd_support` for recent nightly rust ([#&#8203;1586]) ##### Changes - Allow `fn rand::seq::index::sample_weighted` and `fn IndexedRandom::choose_multiple_weighted` to return fewer than `amount` results ([#&#8203;1623]), reverting an undocumented change (\[[#&#8203;1382](https://github.com/rust-random/rand/issues/1382)]) to the previous release. ##### Additions - Add `rand::distr::Alphabetic` distribution. ([#&#8203;1587]) - Re-export `rand_core` ([#&#8203;1604]) [#&#8203;1565]: https://github.com/rust-random/rand/pull/1565 [#&#8203;1579]: https://github.com/rust-random/rand/pull/1579 [#&#8203;1586]: https://github.com/rust-random/rand/pull/1586 [#&#8203;1587]: https://github.com/rust-random/rand/pull/1587 [#&#8203;1604]: https://github.com/rust-random/rand/pull/1604 [#&#8203;1623]: https://github.com/rust-random/rand/pull/1623 [#&#8203;1634]: https://github.com/rust-random/rand/pull/1634 [#&#8203;1646]: https://github.com/rust-random/rand/pull/1646 ### [`v0.9.0`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#090---2025-01-27) [Compare Source](https://github.com/rust-random/rand/compare/0.8.6...0.9.0) ##### Security and unsafe - Policy: "rand is not a crypto library" ([#&#8203;1514]) - Remove fork-protection from `ReseedingRng` and `ThreadRng`. Instead, it is recommended to call `ThreadRng::reseed` on fork. ([#&#8203;1379]) - Use `zerocopy` to replace some `unsafe` code ([#&#8203;1349], [#&#8203;1393], [#&#8203;1446], [#&#8203;1502]) ##### Dependencies - Bump the MSRV to 1.63.0 ([#&#8203;1207], [#&#8203;1246], [#&#8203;1269], [#&#8203;1341], [#&#8203;1416], [#&#8203;1536]); note that 1.60.0 may work for dependents when using `--ignore-rust-version` - Update to `rand_core` v0.9.0 ([#&#8203;1558]) ##### Features - Support `std` feature without `getrandom` or `rand_chacha` ([#&#8203;1354]) - Enable feature `small_rng` by default ([#&#8203;1455]) - Remove implicit feature `rand_chacha`; use `std_rng` instead. ([#&#8203;1473]) - Rename feature `serde1` to `serde` ([#&#8203;1477]) - Rename feature `getrandom` to `os_rng` ([#&#8203;1537]) - Add feature `thread_rng` ([#&#8203;1547]) ##### API changes: rand\_core traits - Add fn `RngCore::read_adapter` implementing `std::io::Read` ([#&#8203;1267]) - Add trait `CryptoBlockRng: BlockRngCore`; make `trait CryptoRng: RngCore` ([#&#8203;1273]) - Add traits `TryRngCore`, `TryCryptoRng` ([#&#8203;1424], [#&#8203;1499]) - Rename `fn SeedableRng::from_rng` -> `try_from_rng` and add infallible variant `fn from_rng` ([#&#8203;1424]) - Rename `fn SeedableRng::from_entropy` -> `from_os_rng` and add fallible variant `fn try_from_os_rng` ([#&#8203;1424]) - Add bounds `Clone` and `AsRef` to associated type `SeedableRng::Seed` ([#&#8203;1491]) ##### API changes: Rng trait and top-level fns - Rename fn `rand::thread_rng()` to `rand::rng()` and remove from the prelude ([#&#8203;1506]) - Remove fn `rand::random()` from the prelude ([#&#8203;1506]) - Add top-level fns `random_iter`, `random_range`, `random_bool`, `random_ratio`, `fill` ([#&#8203;1488]) - Re-introduce fn `Rng::gen_iter` as `random_iter` ([#&#8203;1305], [#&#8203;1500]) - Rename fn `Rng::gen` to `random` to avoid conflict with the new `gen` keyword in Rust 2024 ([#&#8203;1438]) - Rename fns `Rng::gen_range` to `random_range`, `gen_bool` to `random_bool`, `gen_ratio` to `random_ratio` ([#&#8203;1505]) - Annotate panicking methods with `#[track_caller]` ([#&#8203;1442], [#&#8203;1447]) ##### API changes: RNGs - Fix `<SmallRng as SeedableRng>::Seed` size to 256 bits ([#&#8203;1455]) - Remove first parameter (`rng`) of `ReseedingRng::new` ([#&#8203;1533]) ##### API changes: Sequences - Split trait `SliceRandom` into `IndexedRandom`, `IndexedMutRandom`, `SliceRandom` ([#&#8203;1382]) - Add `IndexedRandom::choose_multiple_array`, `index::sample_array` ([#&#8203;1453], [#&#8203;1469]) ##### API changes: Distributions: renames - Rename module `rand::distributions` to `rand::distr` ([#&#8203;1470]) - Rename distribution `Standard` to `StandardUniform` ([#&#8203;1526]) - Move `distr::Slice` -> `distr::slice::Choose`, `distr::EmptySlice` -> `distr::slice::Empty` ([#&#8203;1548]) - Rename trait `distr::DistString` -> `distr::SampleString` ([#&#8203;1548]) - Rename `distr::DistIter` -> `distr::Iter`, `distr::DistMap` -> `distr::Map` ([#&#8203;1548]) ##### API changes: Distributions - Relax `Sized` bound on `Distribution<T> for &D` ([#&#8203;1278]) - Remove impl of `Distribution<Option<T>>` for `StandardUniform` ([#&#8203;1526]) - Let distribution `StandardUniform` support all `NonZero*` types ([#&#8203;1332]) - Fns `{Uniform, UniformSampler}::{new, new_inclusive}` return a `Result` (instead of potentially panicking) ([#&#8203;1229]) - Distribution `Uniform` implements `TryFrom` instead of `From` for ranges ([#&#8203;1229]) - Add `UniformUsize` ([#&#8203;1487]) - Remove support for generating `isize` and `usize` values with `StandardUniform`, `Uniform` (except via `UniformUsize`) and `Fill` and usage as a `WeightedAliasIndex` weight ([#&#8203;1487]) - Add impl `DistString` for distributions `Slice<char>` and `Uniform<char>` ([#&#8203;1315]) - Add fn `Slice::num_choices` ([#&#8203;1402]) - Add fn `p()` for distribution `Bernoulli` to access probability ([#&#8203;1481]) ##### API changes: Weighted distributions - Add `pub` module `rand::distr::weighted`, moving `WeightedIndex` there ([#&#8203;1548]) - Add trait `weighted::Weight`, allowing `WeightedIndex` to trap overflow ([#&#8203;1353]) - Add fns `weight, weights, total_weight` to distribution `WeightedIndex` ([#&#8203;1420]) - Rename enum `WeightedError` to `weighted::Error`, revising variants ([#&#8203;1382]) and mark as `#[non_exhaustive]` ([#&#8203;1480]) ##### API changes: SIMD - Switch to `std::simd`, expand SIMD & docs ([#&#8203;1239]) ##### Reproducibility-breaking changes - Make `ReseedingRng::reseed` discard remaining data from the last block generated ([#&#8203;1379]) - Change fn `SmallRng::seed_from_u64` implementation ([#&#8203;1203]) - Allow `UniformFloat::new` samples and `UniformFloat::sample_single` to yield `high` ([#&#8203;1462]) - Fix portability of distribution `Slice` ([#&#8203;1469]) - Make `Uniform` for `usize` portable via `UniformUsize` ([#&#8203;1487]) - Fix `IndexdRandom::choose_multiple_weighted` for very small seeds and optimize for large input length / low memory ([#&#8203;1530]) ##### Reproducibility-breaking optimisations - Optimize fn `sample_floyd`, affecting output of `rand::seq::index::sample` and `rand::seq::SliceRandom::choose_multiple` ([#&#8203;1277]) - New, faster algorithms for `IteratorRandom::choose` and `choose_stable` ([#&#8203;1268]) - New, faster algorithms for `SliceRandom::shuffle` and `partial_shuffle` ([#&#8203;1272]) - Optimize distribution `Uniform`: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; [#&#8203;1287]) - Optimize fn `sample_single_inclusive` for floats (+\~20% perf) ([#&#8203;1289]) ##### Other optimisations - Improve `SmallRng` initialization performance ([#&#8203;1482]) - Optimise SIMD widening multiply ([#&#8203;1247]) ##### Other - Add `Cargo.lock.msrv` file ([#&#8203;1275]) - Reformat with `rustfmt` and enforce ([#&#8203;1448]) - Apply Clippy suggestions and enforce ([#&#8203;1448], [#&#8203;1474]) - Move all benchmarks to new `benches` crate ([#&#8203;1329], [#&#8203;1439]) and migrate to Criterion ([#&#8203;1490]) ##### Documentation - Improve `ThreadRng` related docs ([#&#8203;1257]) - Docs: enable experimental `--generate-link-to-definition` feature ([#&#8203;1327]) - Better doc of crate features, use `doc_auto_cfg` ([#&#8203;1411], [#&#8203;1450]) [#&#8203;1203]: https://github.com/rust-random/rand/pull/1203 [#&#8203;1207]: https://github.com/rust-random/rand/pull/1207 [#&#8203;1229]: https://github.com/rust-random/rand/pull/1229 [#&#8203;1239]: https://github.com/rust-random/rand/pull/1239 [#&#8203;1246]: https://github.com/rust-random/rand/pull/1246 [#&#8203;1247]: https://github.com/rust-random/rand/pull/1247 [#&#8203;1257]: https://github.com/rust-random/rand/pull/1257 [#&#8203;1267]: https://github.com/rust-random/rand/pull/1267 [#&#8203;1268]: https://github.com/rust-random/rand/pull/1268 [#&#8203;1269]: https://github.com/rust-random/rand/pull/1269 [#&#8203;1272]: https://github.com/rust-random/rand/pull/1272 [#&#8203;1273]: https://github.com/rust-random/rand/pull/1273 [#&#8203;1275]: https://github.com/rust-random/rand/pull/1275 [#&#8203;1277]: https://github.com/rust-random/rand/pull/1277 [#&#8203;1278]: https://github.com/rust-random/rand/pull/1278 [#&#8203;1287]: https://github.com/rust-random/rand/pull/1287 [#&#8203;1289]: https://github.com/rust-random/rand/pull/1289 [#&#8203;1305]: https://github.com/rust-random/rand/pull/1305 [#&#8203;1315]: https://github.com/rust-random/rand/pull/1315 [#&#8203;1327]: https://github.com/rust-random/rand/pull/1327 [#&#8203;1329]: https://github.com/rust-random/rand/pull/1329 [#&#8203;1332]: https://github.com/rust-random/rand/pull/1332 [#&#8203;1341]: https://github.com/rust-random/rand/pull/1341 [#&#8203;1349]: https://github.com/rust-random/rand/pull/1349 [#&#8203;1353]: https://github.com/rust-random/rand/pull/1353 [#&#8203;1354]: https://github.com/rust-random/rand/pull/1354 [#&#8203;1379]: https://github.com/rust-random/rand/pull/1379 [#&#8203;1382]: https://github.com/rust-random/rand/pull/1382 [#&#8203;1393]: https://github.com/rust-random/rand/pull/1393 [#&#8203;1402]: https://github.com/rust-random/rand/pull/1402 [#&#8203;1411]: https://github.com/rust-random/rand/pull/1411 [#&#8203;1416]: https://github.com/rust-random/rand/pull/1416 [#&#8203;1420]: https://github.com/rust-random/rand/pull/1420 [#&#8203;1424]: https://github.com/rust-random/rand/pull/1424 [#&#8203;1438]: https://github.com/rust-random/rand/pull/1438 [#&#8203;1439]: https://github.com/rust-random/rand/pull/1439 [#&#8203;1442]: https://github.com/rust-random/rand/pull/1442 [#&#8203;1446]: https://github.com/rust-random/rand/pull/1446 [#&#8203;1447]: https://github.com/rust-random/rand/pull/1447 [#&#8203;1448]: https://github.com/rust-random/rand/pull/1448 [#&#8203;1450]: https://github.com/rust-random/rand/pull/1450 [#&#8203;1453]: https://github.com/rust-random/rand/pull/1453 [#&#8203;1455]: https://github.com/rust-random/rand/pull/1455 [#&#8203;1462]: https://github.com/rust-random/rand/pull/1462 [#&#8203;1469]: https://github.com/rust-random/rand/pull/1469 [#&#8203;1470]: https://github.com/rust-random/rand/pull/1470 [#&#8203;1473]: https://github.com/rust-random/rand/pull/1473 [#&#8203;1474]: https://github.com/rust-random/rand/pull/1474 [#&#8203;1477]: https://github.com/rust-random/rand/pull/1477 [#&#8203;1480]: https://github.com/rust-random/rand/pull/1480 [#&#8203;1481]: https://github.com/rust-random/rand/pull/1481 [#&#8203;1482]: https://github.com/rust-random/rand/pull/1482 [#&#8203;1487]: https://github.com/rust-random/rand/pull/1487 [#&#8203;1488]: https://github.com/rust-random/rand/pull/1488 [#&#8203;1490]: https://github.com/rust-random/rand/pull/1490 [#&#8203;1491]: https://github.com/rust-random/rand/pull/1491 [#&#8203;1499]: https://github.com/rust-random/rand/pull/1499 [#&#8203;1500]: https://github.com/rust-random/rand/pull/1500 [#&#8203;1502]: https://github.com/rust-random/rand/pull/1502 [#&#8203;1505]: https://github.com/rust-random/rand/pull/1505 [#&#8203;1506]: https://github.com/rust-random/rand/pull/1506 [#&#8203;1514]: https://github.com/rust-random/rand/pull/1514 [#&#8203;1526]: https://github.com/rust-random/rand/pull/1526 [#&#8203;1530]: https://github.com/rust-random/rand/pull/1530 [#&#8203;1533]: https://github.com/rust-random/rand/pull/1533 [#&#8203;1536]: https://github.com/rust-random/rand/pull/1536 [#&#8203;1537]: https://github.com/rust-random/rand/pull/1537 [#&#8203;1547]: https://github.com/rust-random/rand/pull/1547 [#&#8203;1548]: https://github.com/rust-random/rand/pull/1548 [#&#8203;1558]: https://github.com/rust-random/rand/pull/1558 ### [`v0.8.6`](https://github.com/rust-random/rand/releases/tag/0.8.6) [Compare Source](https://github.com/rust-random/rand/compare/0.8.5...0.8.6) #### What's Changed This release back-ports a fix from v0.10. See also [#&#8203;1763]. ##### Changes - Deprecate feature `log` ([#&#8203;1772]) [#&#8203;1763]: https://github.com/rust-random/rand/pull/1763 [#&#8203;1772]: https://github.com/rust-random/rand/pull/1772 - Drop the experimental `simd_support` feature. #### New Contributors - [@&#8203;nwalfield](https://github.com/nwalfield) made their first contribution in [#&#8203;1772](https://github.com/rust-random/rand/pull/1772) **Full Changelog**: <https://github.com/rust-random/rand/compare/0.8.5...0.8.6> </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](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE1MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Update Rust crate rand to 0.10.0
Some checks failed
Build and Test / account (push) Failing after 2m11s
d5ae549d13
spacebot force-pushed renovate/rand-0.x from d5ae549d13
Some checks failed
Build and Test / account (push) Failing after 2m11s
to 7dbec64e1d
Some checks failed
Build and Test / account (push) Failing after 3m37s
2026-04-29 10:00:50 +02:00
Compare
spacebot force-pushed renovate/rand-0.x from 7dbec64e1d
Some checks failed
Build and Test / account (push) Failing after 3m37s
to ff628a65b0
Some checks failed
Build and Test / account (push) Failing after 4m11s
2026-04-29 10:31:10 +02:00
Compare
redbinder0526 closed this pull request 2026-04-29 10:41:58 +02:00
Author
Owner

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.10.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

### Renovate Ignore Notification Because you closed this PR without merging, Renovate will ignore this update (`0.10.0`). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the `ignoreDeps` array of your Renovate config. If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.
Some checks failed
Build and Test / account (push) Failing after 4m11s

Pull request closed

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
spacebar/account!29
No description provided.