masterror_template/lib.rs
1//! Shared helpers for error derive macros.
2//!
3//! This crate exposes the formatting template parser used by `masterror`
4//! to interpret `#[error("...")]` attributes. It is internal to the
5//! workspace but kept separate so that procedural macros can reuse the
6//! parsing logic without a circular dependency.
7
8pub mod template;