Skip to content

Commit 82401c7

Browse files
committed
replace some other supers for crate
1 parent 641913b commit 82401c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

blake2/src/simd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ mod simdint;
1010
mod simdop;
1111
mod simdty;
1212

13-
pub(super) use self::simdty::{u32x4, u64x4};
13+
pub(crate) use self::simdty::{u32x4, u64x4};
1414

15-
pub(super) trait Vector4<T>: Copy {
15+
pub(crate) trait Vector4<T>: Copy {
1616
fn gather(src: &[T], i0: usize, i1: usize, i2: usize, i3: usize) -> Self;
1717

1818
#[allow(clippy::wrong_self_convention)]

sha1-checked/src/compress.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ fn xor(a: &[u32; 5], b: &[u32; 5]) -> u32 {
665665
}
666666

667667
#[inline]
668-
pub(super) fn compress(
668+
pub(crate) fn compress(
669669
state: &mut [u32; 5],
670670
ctx: &mut DetectionState,
671671
blocks: &[[u8; BLOCK_SIZE]],

0 commit comments

Comments
 (0)