diff --git a/src/handshake/machine.rs b/src/handshake/machine.rs index dc8a148..2f8a297 100644 --- a/src/handshake/machine.rs +++ b/src/handshake/machine.rs @@ -1,5 +1,4 @@ use bytes::Buf; -use log::*; use std::io::{Cursor, Read, Write}; use crate::{ diff --git a/src/protocol/frame/frame.rs b/src/protocol/frame/frame.rs index f217c36..7431d28 100644 --- a/src/protocol/frame/frame.rs +++ b/src/protocol/frame/frame.rs @@ -1,5 +1,4 @@ use byteorder::{ByteOrder, NetworkEndian, ReadBytesExt, WriteBytesExt}; -use log::*; use std::{ borrow::Cow, default::Default, diff --git a/src/protocol/frame/mod.rs b/src/protocol/frame/mod.rs index 964d3f0..8e88f96 100644 --- a/src/protocol/frame/mod.rs +++ b/src/protocol/frame/mod.rs @@ -8,8 +8,6 @@ mod mask; use std::io::{Error as IoError, ErrorKind as IoErrorKind, Read, Write}; -use log::*; - pub use self::frame::{CloseFrame, Frame, FrameHeader}; use crate::{ error::{CapacityError, Error, Result},