chore(deps): update rust crate rand to 0.10.0 - autoclosed #957

Closed
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) workspace.dependencies minor 0.8.50.10.0

Release Notes

rust-random/rand (rand)

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

Configuration

📅 Schedule: 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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rand](https://rust-random.github.io/book) ([source](https://github.com/rust-random/rand)) | workspace.dependencies | minor | `0.8.5` → `0.10.0` | --- ### Release Notes <details> <summary>rust-random/rand (rand)</summary> ### [`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.2...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.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.5...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 </details> --- ### Configuration 📅 **Schedule**: 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 [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNzAuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiRGVwZW5kZW5jaWVzIiwiRGVwZW5kZW5jaWVzL1Jlbm92YXRlIl19-->
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package rand@0.8.5 --precise 0.10.0
    Updating crates.io index
error: failed to select a version for the requirement `rand = "^0.8.5"`
candidate versions found which didn't match: 0.10.0
location searched: crates.io index
required by package `ruma-common v0.13.0 (https://forgejo.ellis.link/continuwuation/ruwuma?rev=3126cb5eea991ec40590e54d8c9d75637650641a#3126cb5e)`
    ... which satisfies git dependency `ruma-common` (locked to 0.13.0) of package `ruma v0.10.1 (https://forgejo.ellis.link/continuwuation/ruwuma?rev=3126cb5eea991ec40590e54d8c9d75637650641a#3126cb5e)`
    ... which satisfies git dependency `ruma` (locked to 0.10.1) of package `conduwuit_admin v0.5.5 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/admin)`
    ... which satisfies path dependency `conduwuit-admin` (locked to 0.5.5) of package `xtask v0.5.5 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/xtask)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package rand@0.8.5 --precise 0.10.0 Updating crates.io index error: failed to select a version for the requirement `rand = "^0.8.5"` candidate versions found which didn't match: 0.10.0 location searched: crates.io index required by package `ruma-common v0.13.0 (https://forgejo.ellis.link/continuwuation/ruwuma?rev=3126cb5eea991ec40590e54d8c9d75637650641a#3126cb5e)` ... which satisfies git dependency `ruma-common` (locked to 0.13.0) of package `ruma v0.10.1 (https://forgejo.ellis.link/continuwuation/ruwuma?rev=3126cb5eea991ec40590e54d8c9d75637650641a#3126cb5e)` ... which satisfies git dependency `ruma` (locked to 0.10.1) of package `conduwuit_admin v0.5.5 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/admin)` ... which satisfies path dependency `conduwuit-admin` (locked to 0.5.5) of package `xtask v0.5.5 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/xtask)` ```
renovate force-pushed renovate/rand-0.x from 1d19cf4112
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / define-variables (push) Successful in 2s
Documentation / Build and Deploy Documentation (pull_request) Successful in 40s
Checks / Prek / Pre-commit & Formatting (push) Failing after 1m6s
Checks / Prek / Clippy and Cargo Tests (push) Failing after 4m18s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Failing after 45s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Failing after 8m7s
Release Docker Image / merge (push) Has been skipped
to fbb0a12272
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 28s
Release Docker Image / define-variables (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 42s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m53s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Failing after 1m12s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Failing after 1m11s
Release Docker Image / merge (pull_request) Has been skipped
2025-09-10 16:19:57 +00:00
Compare
renovate force-pushed renovate/rand-0.x from fbb0a12272
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 28s
Release Docker Image / define-variables (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 42s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m53s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Failing after 1m12s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Failing after 1m11s
Release Docker Image / merge (pull_request) Has been skipped
to b3e3550a2b
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 40s
Release Docker Image / define-variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 2m10s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Successful in 1m45s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Successful in 1m45s
Release Docker Image / merge (pull_request) Successful in 9s
2025-09-10 17:06:46 +00:00
Compare
Owner

Looks like this needs a ruwuma update

Looks like this needs a ruwuma update
renovate force-pushed renovate/rand-0.x from b3e3550a2b
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 40s
Release Docker Image / define-variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 2m10s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (pull_request) Successful in 1m45s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (pull_request) Successful in 1m45s
Release Docker Image / merge (pull_request) Successful in 9s
to 416b018e50
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m30s
Release Docker Image / Setup Variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 7m7s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 1m29s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m31s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 10s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m8s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m8s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 9s
2025-09-12 13:30:00 +00:00
Compare
renovate force-pushed renovate/rand-0.x from 416b018e50
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m30s
Release Docker Image / Setup Variables (pull_request) Successful in 2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 7m7s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 1m29s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m31s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 10s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m8s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m8s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 9s
to 0c4c6a0906
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / Build linux-amd64 (release) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (release) (pull_request) Has been cancelled
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been cancelled
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been cancelled
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m38s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m23s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m46s
2025-09-23 03:56:41 +00:00
Compare
renovate force-pushed renovate/rand-0.x from 0c4c6a0906
Some checks failed
renovate/artifacts Artifact file update failure
Release Docker Image / Build linux-amd64 (release) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (release) (pull_request) Has been cancelled
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been cancelled
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been cancelled
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been cancelled
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m38s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m23s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m46s
to 8340bca698
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 59s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m6s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 4m21s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m19s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 3m27s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 13m34s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 15s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m31s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m31s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 37s
2025-10-15 19:04:25 +00:00
Compare
renovate force-pushed renovate/rand-0.x from 8340bca698
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 59s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m6s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 4m21s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m19s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 3m27s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 13m34s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 15s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 1m31s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 1m31s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 37s
to ff2622c0c8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m3s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 15s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m7s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 21s
2025-11-12 05:03:21 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ff2622c0c8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m3s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 15s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m7s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 21s
to 154da8a46b
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 4m9s
Update flake hashes / update-flake-hashes (pull_request) Successful in 2m14s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 7m12s
Checks / Prek / Clippy and Cargo Tests (pull_request) Has been cancelled
2026-01-06 03:26:51 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ff2622c0c8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m3s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 15s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m7s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 21s
to 13fcbd0d48
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m16s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m57s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m23s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1h0m0s
2026-01-06 05:09:08 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ff2622c0c8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m3s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 15s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m7s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 21s
to c2263d149e
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m47s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 34m3s
Update flake hashes / update-flake-hashes (pull_request) Successful in 44s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 20m54s
2026-01-07 05:04:14 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ff2622c0c8
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 45s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 2m3s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 15s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 2m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 2m7s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 21s
to 57464e8b91
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m48s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m43s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m26s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 30m18s
2026-01-08 05:05:42 +00:00
Compare
renovate force-pushed renovate/rand-0.x from 57464e8b91
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m48s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m43s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m26s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 30m18s
to ffd829532e
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m8s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m44s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m40s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 6m40s
2026-02-09 05:02:37 +00:00
Compare
renovate changed title from chore(deps): update rust crate rand to 0.9.0 to chore(deps): update rust crate rand to 0.10.0 2026-02-09 05:02:39 +00:00
renovate force-pushed renovate/rand-0.x from ffd829532e
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m8s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m44s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m40s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 6m40s
to b02e766e0e
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Has been cancelled
Checks / Prek / Pre-commit & Formatting (pull_request) Has been cancelled
Checks / Prek / Clippy and Cargo Tests (pull_request) Has been cancelled
Update flake hashes / update-flake-hashes (pull_request) Has been cancelled
2026-02-15 18:49:31 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ffd829532e
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m8s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m44s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m40s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 6m40s
to 4f9270e117
Some checks failed
renovate/artifacts Artifact file update failure
2026-02-16 05:02:36 +00:00
Compare
renovate force-pushed renovate/rand-0.x from ffd829532e
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m8s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m44s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m40s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 6m40s
to dda278d200
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m16s
Update flake hashes / update-flake-hashes (pull_request) Successful in 19s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m37s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 20m56s
2026-02-17 05:05:04 +00:00
Compare
renovate force-pushed renovate/rand-0.x from dda278d200
Some checks failed
renovate/artifacts Artifact file update failure
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m16s
Update flake hashes / update-flake-hashes (pull_request) Successful in 19s
Documentation / Build and Deploy Documentation (pull_request) Successful in 5m37s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 20m56s
to 1846936c84
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 6m26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 4m42s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m23s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 33m1s
2026-02-19 14:56:13 +00:00
Compare
renovate changed title from chore(deps): update rust crate rand to 0.10.0 to chore(deps): update rust crate rand to 0.10.0 - autoclosed 2026-02-20 23:21:09 +00:00
renovate closed this pull request 2026-02-20 23:21:10 +00:00
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 6m26s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 4m42s
Required
Details
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m23s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 33m1s
Required
Details

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
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
continuwuation/continuwuity!957
No description provided.