cadi_core/lib.rs
1//! CADI Core - Core types and utilities for Content-Addressed Development Interface
2//!
3//! This crate provides the fundamental types and utilities used across the CADI ecosystem.
4
5pub mod chunk;
6pub mod manifest;
7pub mod hash;
8pub mod error;
9
10pub use chunk::*;
11pub use manifest::*;
12pub use hash::*;
13pub use error::*;