Skip to content

Commit

Permalink
feat(data-resource): change blake3 hash to be of type Vec<u64>
Browse files Browse the repository at this point in the history
Signed-off-by: Tarek <[email protected]>
  • Loading branch information
tareknaser committed May 5, 2024
1 parent 382aa9b commit 8f0b347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-resource/src/blake3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub struct ResourceId {}
#[derive(
Hash, Ord, PartialOrd, Eq, PartialEq, Clone, Debug, Serialize, Deserialize,
)]
pub struct Hash(Vec<u8>);
pub struct Hash(Vec<u64>);

impl Display for Hash {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
Expand Down

0 comments on commit 8f0b347

Please sign in to comment.