mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
Merge pull request #7233 from cakebaker/remove_rand_pcg
Remove `rand_pcg`
This commit is contained in:
commit
dbfdff1107
3 changed files with 2 additions and 12 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -460,7 +460,6 @@ dependencies = [
|
||||||
"pretty_assertions",
|
"pretty_assertions",
|
||||||
"procfs",
|
"procfs",
|
||||||
"rand",
|
"rand",
|
||||||
"rand_pcg",
|
|
||||||
"regex",
|
"regex",
|
||||||
"rlimit",
|
"rlimit",
|
||||||
"rstest",
|
"rstest",
|
||||||
|
@ -1831,15 +1830,6 @@ dependencies = [
|
||||||
"getrandom",
|
"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]]
|
[[package]]
|
||||||
name = "rayon"
|
name = "rayon"
|
||||||
version = "1.10.0"
|
version = "1.10.0"
|
||||||
|
|
|
@ -520,7 +520,6 @@ procfs = { version = "0.17", default-features = false }
|
||||||
[target.'cfg(unix)'.dev-dependencies]
|
[target.'cfg(unix)'.dev-dependencies]
|
||||||
nix = { workspace = true, features = ["process", "signal", "user", "term"] }
|
nix = { workspace = true, features = ["process", "signal", "user", "term"] }
|
||||||
rlimit = "0.10.1"
|
rlimit = "0.10.1"
|
||||||
rand_pcg = "0.3.1"
|
|
||||||
xattr = { workspace = true }
|
xattr = { workspace = true }
|
||||||
|
|
||||||
# Specifically used in test_uptime::test_uptime_with_file_containing_valid_boot_time_utmpx_record
|
# Specifically used in test_uptime::test_uptime_with_file_containing_valid_boot_time_utmpx_record
|
||||||
|
|
|
@ -1263,6 +1263,7 @@ fn test_tmp_files_deleted_on_sigint() {
|
||||||
use std::{fs::read_dir, time::Duration};
|
use std::{fs::read_dir, time::Duration};
|
||||||
|
|
||||||
use nix::{sys::signal, unistd::Pid};
|
use nix::{sys::signal, unistd::Pid};
|
||||||
|
use rand::rngs::SmallRng;
|
||||||
|
|
||||||
let (at, mut ucmd) = at_and_ucmd!();
|
let (at, mut ucmd) = at_and_ucmd!();
|
||||||
at.mkdir("tmp_dir");
|
at.mkdir("tmp_dir");
|
||||||
|
@ -1273,7 +1274,7 @@ fn test_tmp_files_deleted_on_sigint() {
|
||||||
let mut file = at.make_file(file_name);
|
let mut file = at.make_file(file_name);
|
||||||
// approximately 20 MB
|
// approximately 20 MB
|
||||||
for _ in 0..40 {
|
for _ in 0..40 {
|
||||||
let lines = rand_pcg::Pcg32::seed_from_u64(123)
|
let lines = SmallRng::seed_from_u64(123)
|
||||||
.sample_iter(rand::distributions::uniform::Uniform::new(0, 10000))
|
.sample_iter(rand::distributions::uniform::Uniform::new(0, 10000))
|
||||||
.take(100_000)
|
.take(100_000)
|
||||||
.map(|x| x.to_string() + "\n")
|
.map(|x| x.to_string() + "\n")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue