summaryrefslogtreecommitdiff
path: root/src/patches.rs
diff options
context:
space:
mode:
authorKim Altintop <kim@eagain.io>2023-04-13 16:50:24 +0200
committerKim Altintop <kim@eagain.io>2023-04-13 17:10:18 +0200
commit8ce1155a1eb490625a7e949a10c4283b4b773d30 (patch)
tree4ece9c129b032bed209df94ba520f7a3c940e310 /src/patches.rs
parent607a5609f858cd707dca3a936d80a7a9539b4b5a (diff)
core: replace bundle checksum with BLAKE3
BLAKE3 has a verified streaming mode (Bao), which allows variable chunk sizes without altering the root hash. This means that a BLAKE3 hash can serve as a long-term stable content address in location-independent storage (as demonstrated by iroh). Signed-off-by: Kim Altintop <kim@eagain.io>
Diffstat (limited to 'src/patches.rs')
-rw-r--r--src/patches.rs14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/patches.rs b/src/patches.rs
index 8623e4e..5efcf90 100644
--- a/src/patches.rs
+++ b/src/patches.rs
@@ -15,16 +15,14 @@ use anyhow::{
bail,
};
-use hex::FromHex;
-use once_cell::sync::Lazy;
-use sha2::{
- digest::{
- generic_array::GenericArray,
- typenum::U32,
- },
+use digest::{
+ generic_array::GenericArray,
+ typenum::U32,
Digest,
- Sha256,
};
+use hex::FromHex;
+use once_cell::sync::Lazy;
+use sha2::Sha256;
use crate::{
git::Refname,