refactor(tvix/store): bump CalculateNARResponse.nar_size to u64

Change-Id: I5f41981820363a5eb9982c3d19830916207c62cc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8591
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Florian Klink 2023-05-18 21:34:22 +03:00 committed by flokli
parent 0e7bbf0d01
commit 103d2eb909
5 changed files with 9 additions and 9 deletions

View file

@ -36,7 +36,7 @@ impl<BS: BlobService, DS: DirectoryService> NARCalculationService
self.nar_renderer.write_nar(&mut cw, root_node)?;
Ok(proto::CalculateNarResponse {
nar_size: cw.count() as u32,
nar_size: cw.count() as u64,
nar_sha256: cw.into_inner().finalize().to_vec(),
})
}