| Age | Commit message (Expand) | Author | Lines |
| 2022-06-19 | Mention formatting macros when encountering ArgumentV1::new in const | Michael Goulet | -0/+1 |
| 2022-06-11 | docs: make all the variadic impls use `(T, ...)` exactly | Michael Howell | -1/+1 |
| 2022-06-11 | Fix incorrectly spelled "variadic" | Michael Howell | -1/+1 |
| 2022-06-08 | rustdoc: show tuple impls as `impl Trait for (T, ...)` | Michael Howell | -0/+1 |
| 2022-06-07 | docs: clean up trait docs for tuples | Michael Howell | -11/+27 |
| 2022-05-29 | Remove `(fn(...) -> ...)` -> `usize` -> `*const ()` -> `usize` cast | Maybe Waffle | -24/+30 |
| 2022-05-21 | Auto merge of #94530 - tmiasko:alignment-impls, r=dtolnay | bors | -1/+1 |
| 2022-05-09 | Auto merge of #95960 - jhpratt:remove-rustc_deprecated, r=compiler-errors | bors | -3/+3 |
| 2022-05-08 | Auto merge of #96302 - Serial-ATA:more-diagnostic-items, r=manishearth | bors | -0/+2 |
| 2022-05-07 | Fix a minor typo in the description of Formatter | Nikolaos Chatzikonstantinou | -1/+1 |
| 2022-04-28 | Add more diagnostic items | Serial | -0/+2 |
| 2022-04-14 | Remove use of `#[rustc_deprecated]` | Jacob Pratt | -3/+3 |
| 2022-04-04 | Rollup merge of #95438 - m-ou-se:sync-unsafe-cell, r=joshtriplett | Dylan DPC | -1/+8 |
| 2022-03-29 | revert changes that cast functions to raw pointers, portability hazard | Aria Beingessner | -2/+2 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -2/+6 |
| 2022-03-29 | Add tracking issue for sync_unsafe_cell. | Mara Bos | -1/+1 |
| 2022-03-29 | Add SyncUnsafeCell. | Mara Bos | -1/+8 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -46/+46 |
| 2022-03-04 | Implement Copy, Clone, PartialEq and Eq for core::fmt::Alignment | Tomasz Miąsko | -1/+1 |
| 2022-02-21 | Suggest calling .display() on PathBuf too | Michael Goulet | -1/+1 |
| 2022-01-29 | Create `core::fmt::ArgumentV1` with generics instead of fn pointer | Gary Guo | -0/+22 |
| 2022-01-04 | Touch up Debug example from PR 92322 | David Tolnay | -3/+7 |
| 2021-12-27 | Add another implementation example to Debug trait | Alper Çugun | -2/+17 |
| 2021-11-26 | Use non-generic inner function for pointer formatting | jam1garner | -18/+24 |
| 2021-10-31 | Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplett | Matthias Krüger | -0/+9 |
| 2021-10-30 | Add #[must_use] to remaining core functions | John Kugelman | -0/+9 |
| 2021-10-23 | update cfg(bootstrap) | Pietro Albini | -15/+1 |
| 2021-10-11 | Add #[must_use] to as_type conversions | John Kugelman | -0/+1 |
| 2021-10-02 | Make diangostic item names consistent | Cameron Steffen | -3/+3 |
| 2021-09-30 | Add private arg to fmt::UnsafeArg | Cameron Steffen | -3/+4 |
| 2021-09-24 | Auto merge of #88999 - Migi:master, r=oli-obk | bors | -8/+8 |
| 2021-09-21 | Use ZST for fmt unsafety | Cameron Steffen | -9/+44 |
| 2021-09-16 | Make Duration's Debug format pad to width | Michiel De Muynck | -8/+8 |
| 2021-09-09 | Ignore automatically derived impls of `Clone` and `Debug` in dead code analysis | Fabian Wolff | -0/+1 |
| 2021-09-08 | Bump stage0 compiler to 1.56 | Mark Rousskov | -25/+0 |
| 2021-09-01 | fix clippy lints | klensy | -3/+3 |
| 2021-09-01 | `fmt::Formatter::pad`: don't call chars().count() more than one time | klensy | -9/+14 |
| 2021-08-16 | Get piece unchecked in write | Cameron Steffen | -3/+8 |
| 2021-08-16 | Make Arguments constructors unsafe | Cameron Steffen | -0/+31 |
| 2021-07-28 | Add new const_format_args!() macro and use it in panics. | Mara Bos | -0/+2 |
| 2021-07-28 | Make const panic!("..") work in Rust 2021. | Mara Bos | -2/+2 |
| 2021-07-04 | Auto merge of #86048 - nbdd0121:no_floating_point, r=Amanieu | bors | -10/+13 |
| 2021-07-02 | core: add unstable `no_fp_fmt_parse` to disable float fmt/parse code | Gary Guo | -0/+3 |
| 2021-06-27 | Make `fmt::Arguments::as_str` unstably const | Jonas Schievink | -1/+2 |
| 2021-06-22 | Change Debug unimplemented message per request | Aris Merchant | -1/+1 |
| 2021-06-16 | Improve errors for missing Debug and Display impls | Aris Merchant | -1/+2 |
| 2021-06-06 | Move `flt2dec::{Formatted, Part}` to dedicated module | Gary Guo | -10/+10 |
| 2021-05-23 | fix pad_integral example | klensy | -1/+2 |
| 2021-05-17 | Avoid zero-length write_str in fmt::write | Mark Rousskov | -2/+6 |
| 2021-05-17 | Optimize default ToString impl | Mark Rousskov | -9/+23 |