meld 1.1.5

Deterministic filesystem state management using Merkle trees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Filesystem Merkle Tree
//!
//! Represents the entire workspace as a Merkle tree, where each node
//! (file or directory) has a deterministic hash based on content and structure.

pub mod builder;
pub mod hasher;
pub mod node;
pub mod path;
pub mod walker;

pub use builder::Tree;