Fix Ciphersuite feature flagging

This commit is contained in:
Luke Parker
2025-08-19 21:42:25 -04:00
parent c8ef044acb
commit d407e35cee
2 changed files with 5 additions and 5 deletions

View File

@@ -3,11 +3,11 @@
#![cfg_attr(not(feature = "std"), no_std)]
use core::fmt::Debug;
#[cfg(any(feature = "alloc", feature = "std"))]
#[allow(unused_imports)]
use std_shims::{
prelude::*,
io::{self, Read},
};
use std_shims::prelude::*;
#[cfg(any(feature = "alloc", feature = "std"))]
use std_shims::io::{self, Read};
use rand_core::{RngCore, CryptoRng};