meld 1.1.1

Deterministic filesystem state management using Merkle trees
Documentation
//! Merkle: Deterministic Filesystem State Management
//!
//! A Merkle-based filesystem state management system that provides deterministic,
//! hash-based tracking of filesystem state and associated context.

pub mod agent;
pub mod api;
pub mod cli;
pub mod concurrency;
pub mod config;
pub mod context;
pub mod error;
pub mod heads;
pub mod ignore;
pub mod init;
pub mod logging;
pub mod metadata;
pub mod provider;
pub mod store;
pub mod telemetry;
pub mod tree;
pub mod types;
pub mod views;
pub mod workspace;