refactor(tvix/castore): move magic number to B3_LEN const

… and export it.

Change-Id: I47d2dc2f5a8174da65c614b43801d648506e2d73
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9544
Tested-by: BuildkiteCI
Reviewed-by: edef <edef@edef.eu>
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-10-05 10:57:27 +03:00 committed by flokli
parent 8239f32b62
commit c67ab911eb
2 changed files with 7 additions and 5 deletions

View file

@ -8,7 +8,7 @@ pub mod import;
pub mod proto;
pub mod utils;
pub use digests::B3Digest;
pub use digests::{B3Digest, B3_LEN};
pub use errors::Error;
#[cfg(test)]