chore(deps): Update rand

A couple indirect deps are still on rand_core 0.6 but we can deal
This commit is contained in:
Jade Ellis
2026-02-20 22:57:45 +00:00
parent efd879fcd8
commit b6c5991e1f
9 changed files with 406 additions and 198 deletions
+1 -2
View File
@@ -100,8 +100,7 @@ impl crate::Service for Service {
}
let first_check_jitter = {
let mut rng = rand::thread_rng();
let jitter_percent = rng.gen_range(-50.0..=10.0);
let jitter_percent = rand::random_range(-50.0..=10.0);
self.interval.mul_f64(1.0 + jitter_percent / 100.0)
};