7 releases

0.3.1 May 20, 2022
0.3.0 Feb 4, 2022
0.2.1 Feb 2, 2022
0.2.0 Dec 11, 2021
0.1.0 Jul 10, 2021

#124 in Value formatting

Download history 997/week @ 2023-10-17 1101/week @ 2023-10-24 1174/week @ 2023-10-31 853/week @ 2023-11-07 1217/week @ 2023-11-14 864/week @ 2023-11-21 1059/week @ 2023-11-28 899/week @ 2023-12-05 908/week @ 2023-12-12 925/week @ 2023-12-19 565/week @ 2023-12-26 899/week @ 2024-01-02 1057/week @ 2024-01-09 957/week @ 2024-01-16 983/week @ 2024-01-23 975/week @ 2024-01-30

4,163 downloads per month
Used in 3 crates

Apache-2.0

36KB
693 lines

rt-format

Fully-runtime equivalent of the format! macro.

Allows formatting strings like the format! macro, with the formatting string and the arguments provided at runtime. This crate supports all the formatting features of the format! macro, except for the fill character.

When (not) to use this crate

There are many crates that can be used for formatting values into strings. Here are some of the criteria you can use to decide if this crate is the right choice for you:

  • Can you specify all the formatting options at compile time? If yes, then std::fmt is a better option than this crate. If you need to supply the formatting specifiers at runtime, then this crate might be a viable option.
  • Are you formatting only numbers? If yes, consider num-runtime-fmt or num-format.
  • Is using Rust nightly an option? If so, consider runtime-fmt.
  • Do you need the ability to implement new formats? If yes, consider dynfmt.
  • Do you need no-std support? If so, you need to use one of the other alternatives.
  • Is formatting likely to be a performance bottleneck for you? If so, you should consider one of the other alternatives. At this time, there are no benchmarks to compare the approach in this crate with other crates.
  • Is stable API a must-have? If so, you might consider the alternatives. This crate is still not at version 1.0, which means that the API is still not completely stable.

Dependencies

~2.1–3MB
~53K SLoC