| Age | Commit message (Expand) | Author | Lines |
| 2022-05-05 | Allow unused rules in some places in the compiler, library and tools | est31 | -0/+1 |
| 2022-05-05 | Rollup merge of #95843 - GuillaumeGomez:improve-new-cyclic-doc, r=m-ou-se | Matthias Krüger | -16/+41 |
| 2022-05-04 | Improve Rc::new_cyclic and Arc::new_cyclic documentation | Guillaume Gomez | -16/+41 |
| 2022-05-02 | Auto merge of #96596 - scottmcm:limited-calloc, r=Mark-Simulacrum | bors | -1/+8 |
| 2022-05-02 | Test leaking of BinaryHeap Drain iterators | Stein Somers | -0/+53 |
| 2022-05-02 | Slightly tighten leak-on-panic test cases | Stein Somers | -52/+49 |
| 2022-05-02 | Share testing utilities with non-btree test cases | Stein Somers | -8/+7 |
| 2022-05-01 | Tweak the calloc optimization to only apply to shortish-arrays | Scott McMurray | -1/+8 |
| 2022-05-02 | Rollup merge of #96568 - EliasHolzmann:fmt_doc_fixes, r=joshtriplett | Yuki Okushi | -18/+31 |
| 2022-05-02 | Rollup merge of #96222 - jmaargh:john-mark/clarify-from-raw-parts-docs, r=Joh... | Yuki Okushi | -3/+8 |
| 2022-05-02 | Rollup merge of #94126 - ssomers:alloc_prep_1, r=Mark-Simulacrum | Yuki Okushi | -8/+1179 |
| 2022-05-01 | add `{Arc, Rc}::downcast_unchecked` | Ibraheem Ahmed | -5/+80 |
| 2022-05-01 | Improve codegen of String::retain method. | Loïc BRANSTETT | -8/+17 |
| 2022-05-01 | std::fmt: Improved list of formatting macros | Elias Holzmann | -4/+6 |
| 2022-05-01 | std::fmt: Removed reference to Formatter::buf and other private fields | Elias Holzmann | -3/+3 |
| 2022-05-01 | std::fmt: Fix the grammar documentation | Elias Holzmann | -2/+7 |
| 2022-05-01 | std::fmt: Added argument index comments to examples for specifying precision | Elias Holzmann | -6/+6 |
| 2022-05-01 | std::fmt: Fixed documentation for specifying precision via `.*` | Elias Holzmann | -5/+11 |
| 2022-05-01 | Auto merge of #96078 - udoprog:refcounted-str-to-u8, r=dtolnay | bors | -0/+38 |
| 2022-04-30 | Bump shared_from_str to Rust 1.62.0 | David Tolnay | -2/+2 |
| 2022-05-01 | Auto merge of #95362 - scottmcm:calloc-arrays, r=Mark-Simulacrum | bors | -1/+8 |
| 2022-04-29 | Auto merge of #96489 - shepmaster:revert-vec-from-array-ref, r=yaahc | bors | -42/+0 |
| 2022-04-28 | Add VecDeque::extend from vec::IntoIter and slice::Iter specializations | Paolo Barbolini | -20/+85 |
| 2022-04-27 | Revert "impl From<&[T; N]> and From<&mut [T; N]> for Vec<T>" | Jake Goulding | -42/+0 |
| 2022-04-26 | Rollup merge of #94022 - jongiddy:cow-into-owned-docs, r=Dylan-DPC | Guillaume Gomez | -3/+3 |
| 2022-04-26 | Rollup merge of #90312 - r00ster91:search, r=Dylan-DPC | Dylan DPC | -8/+20 |
| 2022-04-25 | Rollup merge of #96107 - Gumichocopengin8:test/vec-deque, r=Mark-Simulacrum | Matthias Krüger | -0/+294 |
| 2022-04-24 | test: add test cases for VecDeque | Keita Nonaka | -0/+294 |
| 2022-04-19 | Clarify docs for from_raw_parts | jmaargh | -3/+8 |
| 2022-04-19 | Rollup merge of #96089 - ojeda:no-vec-no_global_oom_handling, r=Mark-Simulacrum | Dylan DPC | -2/+2 |
| 2022-04-17 | Auto merge of #96002 - nnethercote:speed-up-Vec-clear-2, r=m-ou-se | bors | -1/+12 |
| 2022-04-16 | Rollup merge of #96070 - Gumichocopengin8:test/btree-map, r=thomcc | Dylan DPC | -0/+105 |
| 2022-04-16 | `alloc`: make `vec!` unavailable under `no_global_oom_handling` | Miguel Ojeda | -2/+2 |
| 2022-04-15 | Auto merge of #95224 - mjbshaw:patch-1, r=yaahc | bors | -10/+28 |
| 2022-04-15 | Rollup merge of #96034 - Gumichocopengin8:test/btree-set, r=Dylan-DPC | Dylan DPC | -0/+56 |
| 2022-04-15 | Implement str to [u8] conversion for refcounted containers | John-John Tedro | -0/+38 |
| 2022-04-15 | chore: formatting | Keita Nonaka | -11/+9 |
| 2022-04-15 | test: add try_insert() test cases for BTreeSet | Keita Nonaka | -0/+15 |
| 2022-04-15 | test: add get_key_value() test cases for BTreeSet | Keita Nonaka | -0/+24 |
| 2022-04-14 | test: add pop_first() pop_last() test cases for BTreeSet | Keita Nonaka | -9/+77 |
| 2022-04-14 | Fix targets not supporting `target_has_atomic = "ptr"` | Vadim Petrochenkov | -1/+5 |
| 2022-04-14 | library: Use type aliases to make `CStr(ing)` in libcore/liballoc unstable | Vadim Petrochenkov | -6/+8 |
| 2022-04-14 | library: Move `CStr` to libcore, and `CString` to liballoc | Vadim Petrochenkov | -1/+1524 |
| 2022-04-14 | Remove use of `#[rustc_deprecated]` | Jacob Pratt | -1/+1 |
| 2022-04-13 | test: add remove() test cases for BTreeSet | Keita Nonaka | -0/+20 |
| 2022-04-13 | test: add is_superset test cases for BTreeSet | Keita Nonaka | -0/+36 |
| 2022-04-13 | Speed up Vec::clear(). | Nicholas Nethercote | -1/+12 |
| 2022-04-11 | impl const Default for Box<[T]> and Box<str> | Josh Stone | -4/+12 |
| 2022-04-11 | Rollup merge of #95743 - yaahc:binary-search-clarification, r=Mark-Simulacrum | Matthias Krüger | -2/+16 |
| 2022-04-09 | Rollup merge of #95817 - oconnor663:doc_comment2, r=yaahc | Dylan DPC | -1/+1 |