meld 1.1.5

Deterministic filesystem state management using Merkle trees
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core types for the Merkle filesystem state management system.

/// NodeID: Deterministic hash of a filesystem node (file or directory)
pub type NodeID = [u8; 32];

/// FrameID: Deterministic hash of a context frame
pub type FrameID = [u8; 32];

/// Hash: Generic 256-bit hash value
pub type Hash = [u8; 32];