From fc339f46ce62d8ae97cbfea3f115cb976fbbe618 Mon Sep 17 00:00:00 2001 From: MeexReay Date: Mon, 14 Apr 2025 15:46:49 +0300 Subject: [PATCH] allow unused methods in proto.rs --- src/proto.rs | 2 ++ 1 file changed, 2 insertions(+) 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 {}