Compile-Time Formatting
This crate allows formatting values in compile time (e.g., in const fns). The formatted values
are not required to be constants; e.g., arguments or local vars in const fn can be formatted.
Features:
- Zero dependencies.
- Unconditionally
#[no_std]-compatible. - The formatting logic is space-efficient; i.e., it allocates the least amount of bytes that can provably to be sufficient for all possible provided inputs.
- Does not rely on proc macros. This makes the library more lightweight.
Why?
A guiding use case for the crate is richer dynamic compile-time panic messages. It can be used in other contexts as well (including in runtime).
Usage
Add this to your Crate.toml:
[]
= "0.1.0"
Basic usage
use ;
const
let res = catch_unwind;
let err = res.unwrap_err;
let panic_message = err..unwrap;
assert_eq!;
See crate docs for more examples of usage.
Limitations
- Only a few types from the standard library can be formatted: integers,
chars andstrings. - Formatting specifiers do not support hex encoding, debug formatting etc.
- Padding logic assumes that any Unicode char has identical displayed width, which isn't really
true (e.g., there are chars that have zero width and instead combine with the previous char).
The same assumption is made by the
stdpadding logic.
Alternatives and similar tools
const_panicprovides functionality covering the guiding use case (compile-time panics). It supports more types and formats at the cost of being more complex. It also uses a different approach to compute produced message sizes.const_formatprovides general-purpose formatting of constant values. It doesn't seem to support "dynamic" / non-constant args.
Contributing
All contributions are welcome! See the contributing guide to help you get involved.
License
compile-fmt is licensed under either of Apache License, Version 2.0
or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in compile-fmt by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions.