| Age | Commit message (Expand) | Author | Lines |
| 2025-08-19 | Rollup merge of #143730 - pascaldekloe:fmt-radix-trim, r=tgross35 | 许杰友 Jieyou Xu (Joe) | -206/+125 |
| 2025-08-16 | fmt::DisplayInt abstraction obsolete with better macro | Pascal S. de Kloe | -94/+72 |
| 2025-08-02 | fmt with table lookup for binary, octal and hex | Pascal S. de Kloe | -122/+55 |
| 2025-07-25 | fmt of non-decimals is always non-negative due to the two's-complement output | Pascal S. de Kloe | -40/+48 |
| 2025-07-20 | Rollup merge of #143423 - hkBst:clippy-fix-1, r=workingjubilee | Guillaume Gomez | -1/+0 |
| 2025-07-12 | Fixed a core crate compilation failure when enabling the `optimize_for_size` ... | nazo6 | -4/+4 |
| 2025-07-08 | Rollup merge of #143426 - hkBst:clippy-fix-indent-1, r=jhpratt | Trevor Gross | -7/+7 |
| 2025-07-08 | collect.rs: remove empty line after doc comment | Marijn Schouten | -1/+0 |
| 2025-07-08 | Rollup merge of #142098 - GuillaumeGomez:int_format_into, r=Amanieu | Matthias Krüger | -60/+294 |
| 2025-07-04 | clippy fix: indentation | Marijn Schouten | -7/+7 |
| 2025-07-03 | Use `slice_buffer_to_str` in `GenericRadix::fmt_int` | Guillaume Gomez | -18/+8 |
| 2025-07-03 | Implement `int_format_into` feature | Guillaume Gomez | -42/+286 |
| 2025-07-03 | Rollup merge of #134006 - klensy:typos, r=nnethercote | Jana Dönszelmann | -1/+1 |
| 2025-07-03 | setup CI and tidy to use typos for spellchecking and fix few typos | klensy | -1/+1 |
| 2025-07-02 | Remove some unsized tuple impls now that we don't support unsizing tuples any... | Oli Scherer | -6/+1 |
| 2025-06-22 | Implement DesugaringKind::FormatLiteral | mejrs | -7/+12 |
| 2025-06-20 | Convert `ilog(10)` to `ilog10()` | Chai T. Rex | -4/+4 |
| 2025-06-20 | Auto merge of #142294 - GuillaumeGomez:specialize-tostring-on-128-integers, r... | bors | -94/+105 |
| 2025-06-18 | Allow storing `format_args!()` in `let`. | Mara Bos | -36/+2 |
| 2025-06-16 | library/compiler: add `PointeeSized` bounds | David Wood | -18/+18 |
| 2025-06-16 | Specialize `ToString` implementation on `u128` and `i128` | Guillaume Gomez | -15/+13 |
| 2025-06-16 | Implement `_fmt` on `u128` | Guillaume Gomez | -94/+107 |
| 2025-06-11 | faster fmt::Display of 128-bit integers, without unsafe pointer | Pascal S. de Kloe | -152/+128 |
| 2025-06-06 | Compute number of digits instead of relying on constant value for u128 displa... | Guillaume Gomez | -2/+2 |
| 2025-06-03 | `Display`: Rework explanation of `FromStr`/`Display` round-tripping | Josh Triplett | -2/+7 |
| 2025-06-03 | Improve the documentation of `Display` and `FromStr`, and their interactions | Josh Triplett | -0/+9 |
| 2025-05-22 | Rollup merge of #141130 - mejrs:use_self, r=compiler-errors | Matthias Krüger | -5/+5 |
| 2025-05-18 | float: Add `f16` parsing and printing | Trevor Gross | -0/+36 |
| 2025-05-17 | Switch library rustc_unimplemented to use `Self` and `This` | mejrs | -5/+5 |
| 2025-05-15 | Auto merge of #136264 - GuillaumeGomez:optimize-integers-to-string, r=Amanieu | bors | -9/+19 |
| 2025-05-12 | update cfg(bootstrap) | Pietro Albini | -8/+0 |
| 2025-05-01 | Clean up "const" situation in format_args!(). | Mara Bos | -21/+27 |
| 2025-05-01 | Move core::fmt::Arguments::new_v1* to rt.rs. | Mara Bos | -36/+44 |
| 2025-04-30 | Rollup merge of #139624 - m-ou-se:unconst-format-args, r=jhpratt | Matthias Krüger | -1/+8 |
| 2025-04-15 | Add comment | Alice Ryhl | -0/+19 |
| 2025-04-15 | Use full path for core::mem::transmute | Alice Ryhl | -2/+2 |
| 2025-04-12 | Optimize `ToString` implementation for integers | Guillaume Gomez | -9/+19 |
| 2025-04-12 | cfg(kcfi) | Alice Ryhl | -1/+8 |
| 2025-04-11 | Update library/core/src/fmt/rt.rs | Alice Ryhl | -1/+0 |
| 2025-04-10 | cfi: do not transmute function pointers in formatting code | Alice Ryhl | -23/+24 |
| 2025-04-10 | Don't allow flattened format_args in const. | Mara Bos | -1/+8 |
| 2025-04-09 | update cfgs | Boxy | -55/+2 |
| 2025-04-06 | Rollup merge of #139123 - thaliaarchi:core-alloc-test-paths, r=bjorn3 | Stuart Cook | -2/+2 |
| 2025-04-05 | tidy: Fix paths to coretests and alloctests | Thalia Archibald | -2/+2 |
| 2025-04-04 | make `Arguments::as_statically_known_str` doc(hidden) | mejrs | -0/+1 |
| 2025-03-30 | Simplify expansion for format_args!(). | Mara Bos | -7/+1 |
| 2025-03-22 | Auto merge of #136974 - m-ou-se:fmt-options-64-bit, r=scottmcm | bors | -187/+234 |
| 2025-03-21 | Add todo comment on using a niche type for fmt flags. | Mara Bos | -0/+2 |
| 2025-03-18 | Optimize io::Write::write_fmt for constant strings | Thalia Archibald | -1/+2 |
| 2025-03-16 | Rollup merge of #135080 - Enselic:debug-ptr-metadata, r=thomcc | 许杰友 Jieyou Xu (Joe) | -1/+8 |