replace sh1 file hashes with blake3

This commit is contained in:
2024-07-20 10:49:36 +02:00
parent 2bb45cc5c8
commit 26f7d85878
5 changed files with 63 additions and 21 deletions

View File

@@ -4,7 +4,7 @@ use std::path::Path;
pub struct CdnFile {
pub name: String,
pub size: u32,
pub hash: String,
pub blake3: String,
}
#[derive(serde::Deserialize, serde::Serialize)]