Clean up warning for conditionally unused import

This commit is contained in:
Dirkjan Ochtman 2022-06-15 11:46:13 +02:00
parent 2b3c69340d
commit a951d7e373
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
use crate::conn::{CommonState, ConnectionRandoms, State};
use crate::enums::{CipherSuite, ProtocolVersion, SignatureScheme};
#[cfg(feature = "tls12")]
use crate::enums::CipherSuite;
use crate::enums::{ProtocolVersion, SignatureScheme};
use crate::error::Error;
use crate::hash_hs::{HandshakeHash, HandshakeHashBuffer};
#[cfg(feature = "logging")]