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::*;
14
15pub mod ast;
16pub mod parser;
17pub mod validator;
18
19// New atomic chunk and smart chunking system
20pub mod atomic;
21pub mod smart_chunker;
22pub mod project_analyzer;
23
24pub use atomic::*;
25pub use smart_chunker::*;
26pub use project_analyzer::*;
27
28