| Age | Commit message (Expand) | Author | Lines |
| 2025-01-30 | Auto merge of #134824 - niklasf:int_from_ascii, r=ibraheemdev | bors | -89/+131 |
| 2025-01-09 | Update a bunch of library types for MCP807 | Scott McMurray | -0/+4 |
| 2025-01-08 | update version placeholders | Pietro Albini | -4/+4 |
| 2024-12-27 | Implement `int_from_ascii` (#134821) | Niklas Fiekas | -89/+131 |
| 2024-12-27 | Move `{widening, carrying}_mul` to an intrinsic with fallback MIR | Scott McMurray | -135/+0 |
| 2024-12-11 | Add a note saying that `{u8,i8}::from_{be,le,ne}_bytes` is meaningless | Tobias Bucher | -4/+29 |
| 2024-12-01 | Rollup merge of #131784 - Urgau:stabilize-midpoint, r=dtolnay | Jacob Pratt | -14/+14 |
| 2024-12-01 | Stabilize unsigned `num_midpoint` feature | Urgau | -14/+14 |
| 2024-11-27 | update cfgs | Boxy | -1/+0 |
| 2024-11-27 | replace placeholder version | Boxy | -2/+2 |
| 2024-11-13 | Auto merge of #132972 - matthiaskrgr:rollup-456osr7, r=matthiaskrgr | bors | -1/+1 |
| 2024-11-12 | Auto merge of #132870 - Noratrieb:inline-int-parsing, r=tgross35 | bors | -0/+3 |
| 2024-11-10 | `#[inline]` integer parsing functions | Noratrieb | -0/+3 |
| 2024-11-10 | Update the doc comment of `ASCII_CASE_MASK` | chansuke | -1/+1 |
| 2024-11-05 | add const_eval_select macro to reduce redundancy | Ralf Jung | -1/+1 |
| 2024-11-03 | Auto merge of #132542 - RalfJung:const_panic, r=tgross35 | bors | -14/+7 |
| 2024-11-03 | add const_panic macro to make it easier to fall back to non-formatting panic ... | Ralf Jung | -14/+7 |
| 2024-11-02 | get rid of a whole bunch of unnecessary rustc_const_unstable attributes | Ralf Jung | -8/+0 |
| 2024-10-27 | Use Hacker's Delight impl in `i64::midpoint` instead of wide `i128` impl | Urgau | -2/+2 |
| 2024-10-26 | Round negative signed integer towards zero in `iN::midpoint` | Urgau | -0/+65 |
| 2024-10-25 | get rid of the internal unlikely macro | Ralf Jung | -7/+0 |
| 2024-10-25 | Re-do recursive const stability checks | Ralf Jung | -2/+3 |
| 2024-10-15 | update bootstrap configs | Josh Stone | -2/+0 |
| 2024-10-14 | Stabilise 'const_make_ascii' | Gabriel Bjørnager Jensen | -2/+4 |
| 2024-09-23 | Rollup merge of #130713 - bjoernager:const-char-make-ascii, r=Noratrieb | Matthias Krüger | -2/+4 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -2/+2 |
| 2024-09-22 | Mark 'make_ascii_uppercase' and 'make_ascii_lowercase' in 'u8' as const; Rena... | Gabriel Bjørnager Jensen | -2/+4 |
| 2024-09-19 | Rollup merge of #128001 - Krappa322:master, r=scottmcm | Matthias Krüger | -16/+53 |
| 2024-09-08 | add FIXME(const-hack) | Ralf Jung | -1/+1 |
| 2024-09-03 | replace placeholder version | Boxy | -3/+3 |
| 2024-08-31 | Improve documentation for <integer>::from_str_radix | Kappa322 | -16/+53 |
| 2024-08-28 | Speed up `checked_isqrt` and `isqrt` methods | Chai T. Rex | -0/+1 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -21/+11 |
| 2024-07-27 | Auto merge of #128255 - stepancheg:doc-shl, r=scottmcm | bors | -0/+8 |
| 2024-07-27 | Document int.checked_shl(BITS - 1) | Stepan Koltsov | -0/+8 |
| 2024-07-26 | Rollup merge of #124941 - Skgland:stabilize-const-int-from-str, r=dtolnay | Trevor Gross | -2/+3 |
| 2024-07-19 | add `NonZero<uN>::isqrt` | ivan-shrimp | -1/+0 |
| 2024-07-04 | mark `can_not_overflow` as `#[rustc_const_stable(...)]` | Bennet Bleßmann | -2/+1 |
| 2024-07-04 | stabilize `const_int_from_str` | Skgland | -2/+4 |
| 2024-06-24 | Small fixme in core now that NonZero is generic | Pavel Grigorenko | -8/+0 |
| 2024-05-23 | Add assert_unsafe_precondition to unchecked_{add,sub,neg,mul,shl,shr} methods | ltdk | -0/+1 |
| 2024-05-08 | from_str_radix: outline only the panic function | DaniPopes | -6/+6 |
| 2024-05-01 | Replace version placeholders for 1.79 | Mark Rousskov | -1/+1 |
| 2024-04-22 | Stabilize generic `NonZero`. | Markus Reiter | -4/+4 |
| 2024-04-02 | Rollup merge of #123226 - scottmcm:u32-shifts, r=WaffleLapkin | Matthias Krüger | -11/+0 |
| 2024-03-30 | Make {integer}::from_str_radix constant | George Bateman | -110/+183 |
| 2024-03-30 | De-LLVM the unchecked shifts [MCP#693] | Scott McMurray | -11/+0 |
| 2024-01-27 | Switch `NonZero` alias direction. | Markus Reiter | -1/+9 |
| 2024-01-23 | Auto merge of #119892 - joboet:libs_use_assert_unchecked, r=Nilstrieb,cuviper | bors | -0/+1 |
| 2024-01-21 | Rollup merge of #116090 - rmehri01:strict_integer_ops, r=m-ou-se | Nadrieril | -0/+1 |