masterror_template/
lib.rs

1// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
2//
3// SPDX-License-Identifier: MIT
4
5//! Shared helpers for error derive macros.
6//!
7//! This crate exposes the formatting template parser used by `masterror`
8//! to interpret `#[error("...")]` attributes. It is internal to the
9//! workspace but kept separate so that procedural macros can reuse the
10//! parsing logic without a circular dependency.
11
12pub mod template;