| Age | Commit message (Expand) | Author | Lines |
| 2023-03-23 | Stabilize `arc_into_inner` and `rc_into_inner`. | Frank Steffahn | -3/+3 |
| 2023-03-15 | unequal → not equal | gimbles | -2/+2 |
| 2023-03-12 | Rollup merge of #109026 - joshtriplett:rc-into-inner, r=dtolnay | Matthias Krüger | -0/+18 |
| 2023-03-11 | Introduce `Rc::into_inner`, as a parallel to `Arc::into_inner` | Josh Triplett | -0/+18 |
| 2023-03-03 | Match unmatched backticks in library/ | est31 | -1/+1 |
| 2023-01-29 | fix typo in {Rc, Arc}::get_mut_unchecked docs | y21 | -1/+1 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2023-01-08 | Auto merge of #90291 - geeklint:loosen_weak_debug_bound, r=dtolnay | bors | -1/+1 |
| 2022-12-19 | Update coerce_unsized tracking issue from #27732 to #18598 | Anders Kaseorg | -2/+2 |
| 2022-11-20 | Rollup merge of #101310 - zachs18:rc_get_unchecked_mut_docs_soundness, r=Mark... | Matthias Krüger | -4/+37 |
| 2022-11-18 | Change undefined-behavior doctests from ignore to no_run. | Zachary S | -2/+2 |
| 2022-11-18 | Apply suggestions from code review
| zachs18 | -1/+1 |
| 2022-11-18 | Add examples to show when `{Arc,Rc}::get_mut_unchecked` is disallowed. | Zachary S | -0/+32 |
| 2022-11-18 | Clarify and restrict when `{Arc,Rc}::get_mut_unchecked` is allowed. | Zachary S | -4/+5 |
| 2022-11-18 | Remove Vec/Rc storage reuse opt | clubby789 | -53/+6 |
| 2022-11-14 | Reuse `Vec<T>` backing storage for `Rc<[T]>` | clubby789 | -19/+65 |
| 2022-10-26 | ptr::eq: clarify that comparing dyn Trait is fragile | Ralf Jung | -5/+5 |
| 2022-10-21 | Reduce mutability in std-use of with_metadata_of | Andreas Molzer | -1/+1 |
| 2022-09-17 | Fix a typo in docstring | msakuta | -1/+1 |
| 2022-07-10 | Use `byte_sub` in [a]rc impl | Maybe Waffle | -6/+5 |
| 2022-06-20 | Rollup merge of #96609 - ibraheemdev:arc-downcast-unchecked, r=m-ou-se | Dylan DPC | -2/+38 |
| 2022-05-29 | Use Box::new() instead of box syntax in alloc tests | est31 | -3/+4 |
| 2022-05-05 | Rollup merge of #95843 - GuillaumeGomez:improve-new-cyclic-doc, r=m-ou-se | Matthias Krüger | -7/+19 |
| 2022-05-04 | Improve Rc::new_cyclic and Arc::new_cyclic documentation | Guillaume Gomez | -7/+19 |
| 2022-05-01 | add `{Arc, Rc}::downcast_unchecked` | Ibraheem Ahmed | -2/+38 |
| 2022-05-01 | Auto merge of #96078 - udoprog:refcounted-str-to-u8, r=dtolnay | bors | -0/+19 |
| 2022-04-30 | Bump shared_from_str to Rust 1.62.0 | David Tolnay | -1/+1 |
| 2022-04-15 | Auto merge of #95224 - mjbshaw:patch-1, r=yaahc | bors | -10/+28 |
| 2022-04-15 | Implement str to [u8] conversion for refcounted containers | John-John Tedro | -0/+19 |
| 2022-04-08 | hide another #[allow] directive from a docs example | Jack O'Connor | -1/+1 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -3/+2 |
| 2022-03-28 | Auto merge of #95249 - HeroicKatora:set-ptr-value, r=dtolnay | bors | -3/+3 |
| 2022-03-23 | Refactor set_ptr_value as with_metadata_of | Andreas Molzer | -3/+3 |
| 2022-03-23 | Explicitly mention overflow is what we're checking | Michael Bradshaw | -4/+4 |
| 2022-03-22 | Format unsafe {} blocks | Michael Bradshaw | -2/+6 |
| 2022-03-22 | Optimize RcInnerPtr::inc_strong instruction count | Michael Bradshaw | -10/+24 |
| 2022-03-18 | Make Weak::new const | CAD97 | -2/+3 |
| 2022-02-03 | Add tracking issue and impl for `Rc`. | Richard Dodd | -0/+35 |
| 2022-01-23 | Rollup merge of #90666 - bdbai:arc_new_cyclic, r=m-ou-se | Matthias Krüger | -13/+31 |
| 2022-01-22 | Update stabilization version of arc_new_cyclic | Mara Bos | -1/+1 |
| 2022-01-20 | Remove unnecessary unsafe code in `Arc` deferred initialization examples. | Jakob Degen | -29/+21 |
| 2021-12-30 | use generic params for arc_new_cyclic | bdbai | -1/+4 |
| 2021-12-13 | Stabilize arc_new_cyclic | bdbai | -12/+27 |
| 2021-12-12 | doc: fix typo in comments | japm48 | -1/+1 |
| 2021-11-20 | Rollup merge of #89741 - sdroege:arc-rc-from-inner-unsafe, r=Mark-Simulacrum | Matthias Krüger | -20/+31 |
| 2021-11-08 | Add comments regarding superfluous `!Sync` impls | bstrie | -0/+6 |
| 2021-11-02 | Implement `RefUnwindSafe` for `Rc<T>` | inquisitivecrystal | -0/+2 |
| 2021-10-31 | Rollup merge of #89833 - jkugelman:must-use-rc-downgrade, r=joshtriplett | Matthias Krüger | -1/+3 |
| 2021-10-25 | remove requirement of T: Debug from Weak<T> | Violet | -1/+1 |
| 2021-10-15 | Add #[must_use] to remaining alloc functions | John Kugelman | -0/+3 |