fmtparse 0.3.0

Parse format!-like strings
Documentation
1
2
3
4
5
6
7
8
# fmtparse ![License: EPL-2.0]https://img.shields.io/badge/license-EPL--2.0-blue [![fmtparse on crates.io]https://img.shields.io/crates/v/fmtparse]https://crates.io/crates/fmtparse [![fmtparse on docs.rs]https://docs.rs/fmtparse/badge.svg]https://docs.rs/fmtparse [![Source Code Repository]https://img.shields.io/badge/Code-On%20Codeberg-blue?logo=Codeberg]https://codeberg.org/msrd0/fmtparse

Parse `format!`-like strings. This is mostly useful if you want to write a proc
macro and want to implement `format!`-like functionality without relying on the
original macro.

See <https://github.com/CombiRWTH/graph-visualiser-website/blob/6dcce28567d08bb73d4b2bd7533bf246291f3a76/rust/algorithm/impl/src/lib.rs#L203-L223>
for an example usage of this crate.