//! TOML manipulation and formatting library
//!
//! A 3-layer architecture for safe, consistent TOML operations:
//! 1. **Format**: String template building with validation
//! 2. **Builder**: High-level config construction (internal)
//! 3. **Editor**: Safe mutation operations with atomic writes
pub // Internal - used by init command
// Re-exports
pub use ;
pub use TomlEditor;
pub use TomlFormatter;