Skip to content

Commit 58a5e21

Browse files
chore(deps): bump rand from 0.9.2 to 0.10.1 (#1452)
* chore(deps): bump rand from 0.9.2 to 0.10.1 Bumps [rand](https://github.com/rust-random/rand) from 0.9.2 to 0.10.1. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@rand_core-0.9.2...0.10.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix rand 0.10 RngExt import Signed-off-by: James Sturtevant <jsturtevant@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: James Sturtevant <jsturtevant@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Sturtevant <jsturtevant@gmail.com>
1 parent f899300 commit 58a5e21

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hyperlight_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ guest-counter = []
4040

4141
[dev-dependencies]
4242
quickcheck = "1.0.3"
43-
rand = "0.9.2"
43+
rand = "0.10.1"
4444

4545
[lib]
4646
bench = false # see https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options

src/hyperlight_common/src/virtq/ring.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2556,7 +2556,7 @@ pub(crate) mod tests {
25562556
// Large multi-lap random submission/completion
25572557
#[test]
25582558
fn test_random_stress_small() {
2559-
use rand::Rng;
2559+
use rand::RngExt;
25602560
use rand::seq::SliceRandom;
25612561

25622562
let ring = make_ring(16);

0 commit comments

Comments
 (0)