//! Parser module for formatparse
//!
//! This module contains the core parsing logic, organized into sub-modules:
//! - `pattern`: Parses format strings into field specifications
//! - `regex`: Builds regex patterns from field specifications
//! - `matching`: Executes regex matches and extracts values
//! - `format_parser`: Main FormatParser struct and Format class
// regex module is in formatparse-core
pub use FindallIter;
pub use FormatParser;
pub use Format;
pub use parse_field_path;