| Age | Commit message (Expand) | Author | Lines |
| 2021-02-05 | Auto merge of #81257 - pnkfelix:issue-80949-short-term-resolution-via-revert-... | bors | -1/+1 |
| 2020-12-31 | de-stabilize unsized raw ptr methods for Weak | Ralf Jung | -50/+6 |
| 2020-12-25 | Rollup merge of #80352 - ssomers:btree_test_diagnostics, r=Mark-Simulacrum | Dylan DPC | -5/+9 |
| 2020-12-24 | BTreeMap: make test cases more explicit on failure | Stein Somers | -5/+9 |
| 2020-12-24 | BTreeMap: avoid implicit use of node length in flight | Stein Somers | -97/+81 |
| 2020-12-23 | Auto merge of #79521 - ssomers:btree_cleanup_2, r=Mark-Simulacrum | bors | -106/+108 |
| 2020-12-19 | Rollup merge of #78083 - ChaiTRex:master, r=m-ou-se | Yuki Okushi | -5/+7 |
| 2020-12-18 | Rollup merge of #80003 - Stupremee:fix-zst-vecdeque-conversion-panic, r=dtolnay | Dylan DPC | -2/+13 |
| 2020-12-17 | BTreeMap: relax the explicit borrow rule to make code shorter and safer | Stein Somers | -106/+108 |
| 2020-12-17 | Rollup merge of #80022 - ssomers:btree_cleanup_8, r=Mark-Simulacrum | Guillaume Gomez | -2/+2 |
| 2020-12-17 | Rollup merge of #80006 - ssomers:btree_cleanup_6, r=Mark-Simulacrum | Guillaume Gomez | -28/+27 |
| 2020-12-15 | Auto merge of #78682 - glandium:issue78471, r=lcnr | bors | -1/+5 |
| 2020-12-14 | Rollup merge of #79918 - woodruffw-forks:ww/doc-initializer-side-effects, r=d... | Guillaume Gomez | -0/+4 |
| 2020-12-14 | BTreeSet: simplify implementation of pop_first/pop_last | Stein Somers | -2/+2 |
| 2020-12-13 | Auto merge of #80005 - ssomers:btree_cleanup_3, r=Mark-Simulacrum | bors | -10/+11 |
| 2020-12-13 | Auto merge of #79987 - ssomers:btree_cleanup_4, r=Mark-Simulacrum | bors | -0/+2 |
| 2020-12-13 | Auto merge of #79376 - ssomers:btree_choose_parent_kv, r=Mark-Simulacrum | bors | -12/+14 |
| 2020-12-13 | fix typo | Justus K | -1/+1 |
| 2020-12-13 | BTreeMap: more expressive local variables in merge | Stein Somers | -28/+27 |
| 2020-12-13 | BTreeMap: declare clear_parent_link directly on the root it needs | Stein Somers | -10/+11 |
| 2020-12-13 | replace assert! with assert_eq! | Justus K | -1/+1 |
| 2020-12-13 | fix panic if converting ZST Vec to VecDeque | Justus K | -2/+13 |
| 2020-12-13 | Auto merge of #79994 - JohnTitor:rollup-43wl2uj, r=JohnTitor | bors | -62/+0 |
| 2020-12-13 | Rollup merge of #79834 - m-ou-se:bye-linked-list-extras, r=Mark-Simulacrum | Yuki Okushi | -62/+0 |
| 2020-12-13 | BTreeMap: capture a recurring use pattern as replace_kv | Stein Somers | -8/+10 |
| 2020-12-13 | BTreeMap: detect bulk_steal's count-1 underflow in release builds too | Stein Somers | -0/+2 |
| 2020-12-12 | BTreeMap: clarify comments and panics surrounding choose_parent_kv | Stein Somers | -12/+14 |
| 2020-12-11 | doc: apply suggestions | William Woodruff | -2/+3 |
| 2020-12-10 | Rollup merge of #79860 - rust-lang:frewsxcv-patch-2, r=jyn514 | Tyler Mandry | -1/+1 |
| 2020-12-10 | doc(array,vec): add notes about side effects when empty-initializing | William Woodruff | -0/+3 |
| 2020-12-10 | Auto merge of #79814 - lcnr:deque-f, r=Mark-Simulacrum | bors | -5/+27 |
| 2020-12-09 | Rollup merge of #79795 - matklad:unicode-private, r=cramertj | Tyler Mandry | -1/+1 |
| 2020-12-09 | Clarify that String::split_at takes a byte index. | Corey Farwell | -1/+1 |
| 2020-12-08 | Remove deprecated linked_list_extras methods. | Mara Bos | -62/+0 |
| 2020-12-08 | fix unsoundness in `make_contiguous` | Bastian Kauschke | -5/+27 |
| 2020-12-08 | Do not inline finish_grow | Mike Hommey | -1/+5 |
| 2020-12-07 | Removed spurious linebreak from new documentation | Chai T. Rex | -1/+1 |
| 2020-12-07 | Improved documentation for HashMap/BTreeMap Entry's .or_insert_with_key method | Chai T. Rex | -3/+6 |
| 2020-12-07 | Privatize some of libcore unicode_internals | Aleksey Kladov | -1/+1 |
| 2020-12-05 | Auto merge of #78373 - matthewjasper:drop-on-into, r=pnkfelix | bors | -1/+1 |
| 2020-12-04 | Avoid leaking block expression values | Matthew Jasper | -1/+1 |
| 2020-12-04 | Rename `AllocRef` to `Allocator` and `(de)alloc` to `(de)allocate` | Tim Diekmann | -254/+257 |
| 2020-12-02 | break formatting so rustfmt is happy | Ralf Jung | -1/+2 |
| 2020-12-02 | disable a ptr equality test on Miri | Ralf Jung | -1/+5 |
| 2020-12-01 | Update rustc version that or_insert_with_key landed | Chai T. Rex | -1/+1 |
| 2020-11-30 | Make ui test that are run-pass and do not test the compiler itself library tests | Christiaan Dirkx | -1/+95 |
| 2020-11-29 | Rollup merge of #79363 - ssomers:btree_cleanup_comments, r=Mark-Simulacrum | Dylan DPC | -89/+118 |
| 2020-11-29 | Rollup merge of #79327 - TimDiekmann:static-alloc-pin-in-box, r=Mark-Simulacrum | Dylan DPC | -7/+25 |
| 2020-11-28 | Require allocator to be static for boxed `Pin`-API | Tim Diekmann | -7/+25 |
| 2020-11-28 | BTreeMap: try to enhance various comments & local identifiers | Stein Somers | -89/+118 |