Skip to content

Commit 2e24c12

Browse files
committed
fmt
1 parent cd4e3fc commit 2e24c12

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

digest/src/core_api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub trait ExtendableOutputCore: crate::UpdateCore {
5858
}
5959

6060
/// Wrapper around core trait implementations.
61-
///
61+
///
6262
/// It handles data buffering and implements the mid-level traits.
6363
#[derive(Clone, Default)]
6464
pub struct CoreWrapper<D: UpdateCore> {

digest/src/lib.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,11 @@ mod digest;
5252
mod dyn_digest;
5353

5454
#[cfg(feature = "core-api")]
55-
pub use crate::core_api::{
56-
CoreWrapper, ExtendableOutputCore, FixedOutputCore, UpdateCore,
57-
};
55+
pub use crate::core_api::{CoreWrapper, ExtendableOutputCore, FixedOutputCore, UpdateCore};
5856
pub use crate::digest::{Digest, Output};
5957
#[cfg(feature = "alloc")]
6058
pub use dyn_digest::DynDigest;
61-
pub use generic_array::{self, ArrayLength, typenum::consts, GenericArray};
59+
pub use generic_array::{self, typenum::consts, ArrayLength, GenericArray};
6260

6361
/// Trait for updating hasher state with input data.
6462
pub trait Update {

0 commit comments

Comments
 (0)