1
0
Fork
You've already forked fmtparse
0
Parse format!-like strings
  • Rust 100%
Dominic bb6e83ec2b
All checks were successful
Rust / readme (push) Successful in 11s
Rust / rustfmt (push) Successful in 1m5s
Rust / Check (Rust Nightly) (push) Successful in 1m19s
Rust / Check (Rust Stable) (push) Successful in 1m20s
Release fmtparse 0.3.0
2026年02月19日 21:59:42 +01:00
.forgejo/workflows move to codeberg 2026年02月19日 21:34:13 +01:00
src add basic description to crate doc 2026年02月19日 21:57:44 +01:00
.gitignore initial commit 2023年06月13日 14:36:47 +02:00
Cargo.toml Release fmtparse 0.3.0 2026年02月19日 21:59:42 +01:00
LICENSE initial commit 2023年06月13日 14:36:47 +02:00
README.md add basic description to crate doc 2026年02月19日 21:57:44 +01:00
rustfmt.toml lints and code format 2026年02月19日 21:36:46 +01:00

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.