1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-05 15:37:47 +00:00

test_sort: use Pcg32 random number generator

This commit is contained in:
Niyaz Nigmatullin 2022-09-12 19:36:51 +03:00
parent ec8e610e48
commit 729d97e993
3 changed files with 14 additions and 3 deletions

10
Cargo.lock generated
View file

@ -367,6 +367,7 @@ dependencies = [
"pretty_assertions",
"procfs",
"rand",
"rand_pcg",
"regex",
"rlimit",
"selinux",
@ -1664,6 +1665,15 @@ dependencies = [
"getrandom",
]
[[package]]
name = "rand_pcg"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
dependencies = [
"rand_core",
]
[[package]]
name = "rayon"
version = "1.5.3"