Parse format!-like strings
- Rust 100%
| .forgejo/workflows | move to codeberg | |
| src | add basic description to crate doc | |
| .gitignore | initial commit | |
| Cargo.toml | Release fmtparse 0.3.0 | |
| LICENSE | initial commit | |
| README.md | add basic description to crate doc | |
| rustfmt.toml | lints and code format | |
fmtparse License: EPL-2.0 fmtparse on crates.io fmtparse on docs.rs Source Code Repository
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.