misc: fix compile

This commit is contained in:
2026-03-15 19:23:32 -04:00
Unverified
parent cfde2cb3d8
commit 677c70a763
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
use std::{collections::HashMap, net::SocketAddr, sync::Arc}; use std::{collections::HashMap, net::SocketAddr, sync::Arc};
use rand::Rng; use rand::RngExt;
use tokio::sync::{ use tokio::sync::{
mpsc::{error::SendError, UnboundedSender}, mpsc::{error::SendError, UnboundedSender},
RwLock, RwLock,

View File

@@ -1,4 +1,4 @@
use rand::Rng; use rand::RngExt;
use std::net::SocketAddr; use std::net::SocketAddr;
use std::time::Instant; use std::time::Instant;
use std::{ops, vec}; use std::{ops, vec};