| Age | Commit message (Expand) | Author | Lines |
| 2020-05-14 | Fix Arc::decr_strong_count doc test | Tomasz Miąsko | -3/+5 |
| 2020-05-13 | Auto merge of #72013 - nnethercote:make-RawVec-grow-mostly-non-generic, r=Ama... | bors | -149/+95 |
| 2020-05-12 | Rollup merge of #71737 - RalfJung:miri-test-threads, r=shepmaster | Dylan DPC | -9/+10 |
| 2020-05-12 | Split `RawVec::grow` up. | Nicholas Nethercote | -50/+79 |
| 2020-05-12 | Remove `RawVec::double`. | Nicholas Nethercote | -88/+23 |
| 2020-05-12 | Remove `RawVec::double_in_place`. | Nicholas Nethercote | -18/+0 |
| 2020-05-11 | fix test_weak_count_locked for Miri | Ralf Jung | -1/+5 |
| 2020-05-09 | Rollup merge of #71839 - LG3696:master, r=cramertj | Dylan DPC | -2/+5 |
| 2020-05-07 | Rollup merge of #70733 - yoshuawuyts:arc-increment-refcount, r=Mark-Simulacrum | Dylan DPC | -5/+80 |
| 2020-05-07 | Add Arc::{incr,decr}_strong_count | Yoshua Wuyts | -5/+80 |
| 2020-05-06 | grammar: dealing-with | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: simplify to avoid that | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: stray comma | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: noun not verb | Josh Soref | -2/+2 |
| 2020-05-06 | grammar: subject-verb not subject-verb-verb | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: disambiguate space-character | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: count-agreement default ... is | Josh Soref | -1/+1 |
| 2020-05-06 | grammar: which vs that | Josh Soref | -4/+4 |
| 2020-05-06 | Rollup merge of #71510 - ssomers:btreemap_iter_intertwined, r=Mark-Simulacrum | Dylan DPC | -75/+119 |
| 2020-05-05 | Rollup merge of #71892 - integer32llc:btreemap-entry-vacant-docs, r=jonas-sch... | Dylan DPC | -6/+5 |
| 2020-05-04 | Update btree_map::VacantEntry::insert docs to actually call insert | Carol (Nichols || Goulding) | -6/+5 |
| 2020-05-04 | whoops | main() | -1/+1 |
| 2020-05-04 | Add remove_current_as_list to LinkedList's CursorMut | main() | -0/+25 |
| 2020-05-03 | Make BTreeMap::new and BTreeSet::new const | Luca Gladiator | -2/+5 |
| 2020-05-01 | liballoc tests: Miri supports threads now | Ralf Jung | -8/+5 |
| 2020-04-30 | Rollup merge of #71148 - bluss:vec-drop-raw-slice, r=RalfJung | Tyler Mandry | -4/+10 |
| 2020-04-30 | rename-unique: Rename Unique::empty() to Unique::dangling() | cohenarthur | -5/+5 |
| 2020-04-28 | Vec IntoIter: Drop using raw slice | Ulrik Sverdrup | -2/+8 |
| 2020-04-27 | Rollup merge of #71589 - RalfJung:unique-no-shr, r=SimonSapin | Dylan DPC | -3/+3 |
| 2020-04-26 | Rollup merge of #71421 - elichai:2020-04-boxed-slice, r=sfackler | Dylan DPC | -0/+10 |
| 2020-04-26 | remove Unique::from for shared pointer types | Ralf Jung | -3/+3 |
| 2020-04-26 | Add a function to turn Box<T> into Box<[T]> (into_boxed_slice) | Elichai Turkel | -0/+10 |
| 2020-04-26 | Rollup merge of #71575 - jplatte:patch-4, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2020-04-26 | Fix stable(since) attribute for BTreeMap::remove_entry | Jonas Platte | -1/+1 |
| 2020-04-26 | fix more clippy warnings | Matthias Krüger | -2/+2 |
| 2020-04-25 | Auto merge of #71556 - Dylan-DPC:rollup-9ll4shr, r=Dylan-DPC | bors | -33/+59 |
| 2020-04-25 | Rollup merge of #71548 - crlf0710:cursor_bounds, r=Amanieu | Dylan DPC | -0/+12 |
| 2020-04-25 | Rollup merge of #71168 - SimonSapin:into_raw_non_null, r=Amanieu | Dylan DPC | -31/+46 |
| 2020-04-25 | Rollup merge of #70712 - :stabilize-remove-entry, r=Amanieu | Dylan DPC | -2/+1 |
| 2020-04-25 | Use the correct bound for `Cursor` `Send` | Charles Lew | -1/+1 |
| 2020-04-25 | Auto merge of #71439 - Mark-Simulacrum:stage0-next, r=jonas-schievink | bors | -3/+1 |
| 2020-04-25 | Bump bootstrap compiler | Mark Rousskov | -3/+1 |
| 2020-04-25 | Rollup merge of #71523 - Mark-Simulacrum:alloc-inline-dup, r=Amanieu | Dylan DPC | -10/+7 |
| 2020-04-25 | Add missing Send and Sync bounds for linked list Cursor and CursorMut. | Charles Lew | -0/+12 |
| 2020-04-25 | Rollup merge of #71485 - arlopurcell:binary_heap_retain, r=Amanieu | Dylan DPC | -0/+37 |
| 2020-04-25 | Speed up BTreeMap iteration by intertwined descend to the initial leaf edges | Stein Somers | -29/+47 |
| 2020-04-25 | Introduce BTreeMap benches of iter itself | Stein Somers | -46/+72 |
| 2020-04-24 | Take a single root node in range_search | Mark Rousskov | -10/+7 |
| 2020-04-24 | Rollup merge of #71476 - RalfJung:miri-test-sizes, r=kennytm | Dylan DPC | -71/+35 |
| 2020-04-24 | Add BinaryHeap::retain as suggested in #42849 | arlo | -0/+37 |