grit-lib 0.1.0

Core library for the grit Git implementation
Documentation
//! Gust library — core Git-compatible engine.
//!
//! # Architecture
//!
//! All Git-compatible logic lives here; the `grit` binary is a thin CLI shim
//! that parses arguments and delegates to types exposed from this crate.
//!
//! ## Modules
//!
//! - [`error`] — shared error types using `thiserror`
//! - [`objects`] — object ID, object kinds, and in-memory representations
//! - [`odb`] — loose object store (read/write zlib-compressed objects)
//! - [`repo`] — repository discovery and handle
//! - [`index`] — Git index (staging area) read/write
//! - [`ignore`] — ignore/exclude pattern matching for check-ignore
//! - [`refs`] — reference storage (files backend)

pub mod check_ref_format;
pub mod config;
pub mod diff;
pub mod error;
pub mod fmt_merge_msg;
pub mod hooks;
pub mod ignore;
pub mod index;
pub mod ls_remote;
pub mod merge_base;
pub mod merge_file;
pub mod name_rev;
pub mod objects;
pub mod odb;
pub mod pack;
pub mod patch_ids;
pub mod prune_packed;
pub mod reflog;
pub mod refs;
pub mod repo;
pub mod rev_list;
pub mod rev_parse;
pub mod state;
pub mod stripspace;
pub mod unpack_objects;
pub mod write_tree;