| Age | Commit message (Expand) | Author | Lines |
| 2024-12-22 | Impl String::into_chars | tison | -2/+185 |
| 2024-12-13 | Remove support for specializing ToString outside the standard library | bjorn3 | -37/+32 |
| 2024-12-05 | Fixed another broken test | Elias Holzmann | -2/+2 |
| 2024-12-05 | Added struct `fmt::FormattingOptions` | Elias Holzmann | -1/+2 |
| 2024-11-17 | alloc: fix `String`'s doc | Yutaro Ohno | -1/+1 |
| 2024-10-17 | Auto merge of #130223 - LaihoE:faster_str_replace, r=thomcc | bors | -1/+6 |
| 2024-10-07 | Rollup merge of #128399 - mammothbane:master, r=Amanieu,tgross35 | Stuart Cook | -13/+25 |
| 2024-10-06 | liballoc: introduce String, Vec const-slicing | Nathan Perry | -13/+25 |
| 2024-09-23 | Add fast path for ascii to ascii in str::replace | Laiho | -1/+6 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -3/+3 |
| 2024-09-21 | Rollup merge of #130408 - okaneco:into_lossy_refactor, r=Noratrieb | Michael Goulet | -1/+25 |
| 2024-09-20 | Avoid re-validating UTF-8 in `FromUtf8Error::into_utf8_lossy` | okaneco | -1/+25 |
| 2024-09-19 | [Clippy] Swap `unnecessary_owned_empty_strings` to use diagnostic item instea... | GnomedDev | -0/+1 |
| 2024-09-19 | [Clippy] Swap `unnecessary_to_owned` to use diagnostic item instead of path | GnomedDev | -0/+1 |
| 2024-09-19 | [Clippy] Swap `single_char_add_str`/`format_push_string` to use diagnostic it... | GnomedDev | -0/+2 |
| 2024-09-19 | [Clippy] Swap `option_as_ref_deref` to use diagnostic items instead of paths | GnomedDev | -0/+2 |
| 2024-09-15 | Rollup merge of #129439 - okaneco:vec_string_lossy, r=Noratrieb | Matthias Krüger | -0/+74 |
| 2024-09-09 | Add missing `#[allow(missing_docs)]` on hack functions in alloc | Urgau | -0/+1 |
| 2024-08-31 | Fix `elided_named_lifetimes` in code | Pavel Grigorenko | -1/+1 |
| 2024-08-22 | Implement feature `string_from_utf8_lossy_owned` | okaneco | -0/+74 |
| 2024-08-07 | alloc: make `to_string_str!` a bit less complex | Michael Howell | -22/+35 |
| 2024-08-06 | alloc: add ToString specialization for `&&str` | Michael Howell | -8/+35 |
| 2024-08-03 | Rollup merge of #127586 - zachs18:more-must-use, r=cuviper | Matthias Krüger | -1/+1 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -4/+1 |
| 2024-07-15 | Remove generic lifetime parameter of trait `Pattern` | Benoît du Garreau | -12/+15 |
| 2024-07-10 | Clarify/add `must_use` messages for more `into_raw*` functions of `alloc` types. | Zachary S | -1/+1 |
| 2024-07-06 | Mitigate focused memory leaks in `alloc` doctests for Miri. | Zachary S | -0/+3 |
| 2024-05-19 | Auto merge of #99969 - calebsander:feature/collect-box-str, r=dtolnay | bors | -4/+6 |
| 2024-05-18 | Clarify how String::leak and into_boxed_str differ | Jon Gjengset | -5/+7 |
| 2024-05-05 | alloc: implement FromIterator for Box<str> | Caleb Sander | -4/+6 |
| 2024-04-27 | WS fix. | JirCep | -1/+1 |
| 2024-04-27 | String.truncate calls Vec.truncate, in turn, and that states | JirCep | -1/+1 |
| 2024-04-26 | Auto merge of #123909 - dtolnay:utf8chunks, r=joboet | bors | -3/+1 |
| 2024-04-24 | Stabilize Utf8Chunks | David Tolnay | -3/+1 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -0/+4 |
| 2024-04-01 | doc: mention heap allocation earlier in String docs | Jani Mustonen | -3/+3 |
| 2024-03-26 | Rollup merge of #122835 - compiler-errors:deref-pure, r=Nadrieril | Matthias Krüger | -0/+3 |
| 2024-03-25 | Require DerefPure for patterns | Michael Goulet | -0/+3 |
| 2024-03-24 | Amended wording | Reed | -2/+2 |
| 2024-03-18 | Fix a typo in the alloc::string::String docs | Reed | -1/+1 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -0/+4 |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+13 |
| 2024-02-29 | Rollup merge of #120291 - pitaj:string-sliceindex, r=Amanieu | Jacob Pratt | -88/+14 |
| 2024-02-27 | have `String` use `SliceIndex` impls from `str` | Peter Jaszkowiak | -88/+14 |
| 2024-02-26 | Document args returned from `String::into_raw_parts` | 许杰友 Jieyou Xu (Joe) | -1/+1 |
| 2024-02-26 | Rearrange `String::from_raw_parts` doc argument order to match code argument ... | 许杰友 Jieyou Xu (Joe) | -1/+1 |
| 2024-02-22 | On type error of method call arguments, look at confusables for suggestion | Esteban Küber | -0/+1 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+3 |
| 2023-10-11 | Rollup merge of #95967 - CAD97:from-utf16, r=dtolnay | Ali MJ Al-Nasrawy | -0/+150 |
| 2023-10-05 | Add more diagnostic items for clippy | Jason Newcomb | -0/+1 |