bump deps & rust edition

This commit is contained in:
2025-02-26 21:37:34 +07:00
parent c6eaffdb29
commit 4b3b768723
9 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ impl Gateway {
fn next_conv_pair(&mut self) -> (u32, u32) {
(
self.id_counter.fetch_add(1, Ordering::SeqCst) + 1,
rand::thread_rng().next_u32(),
rand::rng().next_u32(),
)
}
}