diff --git a/src/proto.rs b/src/proto.rs index 611ff36..ccf5bcc 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -1,3 +1,5 @@ +#![allow(unused)] + use std::{error::Error, fmt::Debug, io::{Read, Write}, net::TcpStream}; pub trait RacStream: Read + Write + Unpin + Send + Sync + Debug {}