Skip to main content

kissreplace/
lib.rs

1//! KISS template engine for `@VAR@` placeholders.
2//!
3//! Part of the [`Inherit`](https://crates.io/crates/cargo-inherit) ecosystem.
4//! For detailed documentation, examples, and design rationale, see the
5//! [Inherit Book — kissreplace chapter](https://vi-is-ramen.github.io/book/en/my-crates/kissreplace).
6
7mod error;
8pub use error::{KissReplaceError, Result};
9mod strlike;
10pub use strlike::Variables;
11pub mod replace;
12pub use replace::KissReplace;
13pub mod scan;
14pub mod valid;