Skip to content

Commit 2429191

Browse files
committed
fix(args): make INTEGRITY_CHECK_BYTE_LEN public
In addition to being needed for future work, this is needed to make cargo doc pass. Signed-off-by: Daniel Noland <daniel@githedgehog.com>
1 parent a7f25c5 commit 2429191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

args/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ pub enum IntegrityCheckError {
986986
const SHA384_BYTE_LEN: usize = 384 / 8;
987987

988988
/// Current size of integrity check in bytes (currently SHA-384).
989-
const INTEGRITY_CHECK_BYTE_LEN: usize = SHA384_BYTE_LEN;
989+
pub const INTEGRITY_CHECK_BYTE_LEN: usize = SHA384_BYTE_LEN;
990990

991991
/// Internal representation of SHA-384 hash bytes.
992992
#[repr(transparent)]

0 commit comments

Comments
 (0)