Update Rust crate rand to 0.9.0 #178

Merged
pierre merged 3 commits from renovate/rand-0.x into master 2025-02-03 20:18:35 +00:00
Showing only changes of commit 8cbd717db4 - Show all commits

View File

@ -25,7 +25,7 @@ impl MinioTestServer {
let root_user = rand_str(30);
let root_password = rand_str(30);
let api_port = (2000 + rand::thread_rng().next_u64() % 5000) as u16;
let api_port = (2000 + rand::rng().next_u64() % 5000) as u16;
log::info!(
"Spwan a new Minio server on port {} with root credentials {}:{}",
api_port,