about summary refs log tree commit diff
path: root/library/alloc/src/sync.rs
AgeCommit message (Expand)AuthorLines
2025-01-21add missing allocator safety in alloc crateLemonJ-1/+1
2025-01-16Rollup merge of #134496 - DiuDiu777:fix-doc, r=ibraheemdevMatthias Krüger-2/+6
2025-01-16fix typo in library/alloc/src/sync.rsClearLove-1/+1
2025-01-10Use `NonNull::without_provenance` within the standard librarySamuel Tardieu-12/+3
2025-01-08Remove some unnecessary `.into()` callsEsteban Küber-1/+1
2024-12-26Rollup merge of #134379 - bjoernager:slice-as-array, r=dtolnayJacob Pratt-0/+20
2024-12-19Add missing safety descriptions to Arc's 'from_raw','increment_strong_count',...LemonJ-2/+6
2024-12-18Add 'into_array' conversion destructors for 'Box', 'Rc', and 'Arc';Gabriel Bjørnager Jensen-0/+20
2024-12-17Use field init shorthand where possibleJosh Triplett-1/+1
2024-12-04Move some alloc tests to the alloctests cratebjorn3-3/+0
2024-11-27update cfgsBoxy-1/+1
2024-11-27replace placeholder versionBoxy-2/+2
2024-11-12Make `CloneToUninit` dyn-compatibleZachary S-1/+1
2024-11-12Rollup merge of #132869 - lolbinarycat:library-fix-too_long_first_doc_paragra...Matthias Krüger-1/+3
2024-11-11Auto merge of #127589 - notriddle:notriddle/search-sem-3, r=GuillaumeGomezbors-0/+1
2024-11-10split up the first paragraph of doc comments for better summariesbinarycat-1/+3
2024-11-03Rollup merge of #129329 - eduardosm:rc-from-mut-slice, r=dtolnayMatthias Krüger-0/+40
2024-10-30rustdoc-search: simplify rules for generics and type paramsMichael Howell-0/+1
2024-10-29Implement `From<&mut {slice}>` for `Box/Rc/Arc<{slice}>`Eduardo Sánchez Muñoz-0/+40
2024-10-27Rc/Arc: don't leak the allocation if drop panicsLukas Markeffsky-7/+9
2024-10-25library: consistently use American spelling for 'behavior'Ralf Jung-2/+2
2024-10-24Rollup merge of #130225 - adetaylor:rename-old-receiver, r=wesleywiserStuart Cook-3/+3
2024-10-22Rename Receiver -> LegacyReceiverAdrian Taylor-3/+3
2024-10-22refactor `Arc<T>::default`Slanterns-7/+10
2024-10-16Auto merge of #131460 - jwong101:default-placement-new, r=ibraheemdevbors-1/+7
2024-10-11rename RcBox in other places tooJonathan Dönszelmann-4/+4
2024-10-10allocate before calling T::default in <Arc<T>>::default()Joshua Wong-1/+7
2024-09-27Mark some more smart pointers as insignificantMichael Goulet-0/+1
2024-09-25Use `&raw` in the standard libraryJosh Stone-11/+11
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-1/+1
2024-09-17Rollup merge of #129674 - matthewpipie:rc-arc-new-cyclic-in, r=dtolnayMatthias Krüger-48/+93
2024-09-16Update library/alloc/src/sync.rsmatthewpipie-1/+1
2024-09-06Remove duplicate implMatthew Giordano-50/+3
2024-09-06remove the Clone requirementMatthew Giordano-93/+92
2024-09-03replace placeholder versionBoxy-4/+4
2024-08-29add new_cyclic_in for ArcMatthew Giordano-0/+93
2024-08-28Rollup merge of #129673 - matthewpipie:arc-weak-debug-trait, r=dtolnayJubilee-1/+1
2024-08-27Add fmt::Debug to sync::Weak<T, A>Matthew Giordano-1/+1
2024-08-27library: Stabilize new_uninit for Box, Rc, and ArcJubilee Young-18/+8
2024-08-23library: Move unstable API of new_uninit to new featuresJubilee Young-4/+6
2024-07-31PinCoerceUnsized trait into coreXiangfei Ding-1/+7
2024-07-29Reformat `use` declarations.Nicholas Nethercote-3/+1
2024-07-26Fix doc nitsJohn Arundel-12/+12
2024-07-15lib: replace some `mem::forget`'s with `ManuallyDrop`Pavel Grigorenko-20/+16
2024-07-13Rollup merge of #127446 - zachs18:miri-stdlib-leaks-core-alloc, r=Mark-Simula...Jubilee-0/+6
2024-07-12Rollup merge of #124980 - zachs18:rc-allocator, r=AmanieuMatthias Krüger-10/+18
2024-07-06Remove non-focused memory leaks in `alloc` doctests for Miri.Zachary S-0/+6
2024-07-05Run alloc sync testsChris Denton-6/+2
2024-06-22Generalize `{Rc,Arc}::make_mut()` to unsized types.Kevin Reid-13/+94
2024-06-22Replace `WriteCloneIntoRaw` with `CloneToUninit`.Kevin Reid-3/+3