Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Nov 20, 2024
1 parent d31cba1 commit a852be0
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions inout/src/reserved.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
use crate::errors::OutIsTooSmallError;
use crate::{errors::OutIsTooSmallError, InOutBuf};
use core::{marker::PhantomData, slice};

#[cfg(feature = "block-padding")]
use crate::errors::PadError;
#[cfg(feature = "block-padding")]
use crate::{InOut, InOutBuf};
#[cfg(feature = "block-padding")]
use block_padding::{PadType, Padding};
#[cfg(feature = "block-padding")]
use hybrid_array::{Array, ArraySize};
use {
crate::{errors::PadError, InOut},
block_padding::{PadType, Padding},
hybrid_array::{Array, ArraySize},
};

/// Custom slice type which references one immutable (input) slice and one
/// mutable (output) slice. Input and output slices are either the same or
Expand Down

0 comments on commit a852be0

Please sign in to comment.