| Age | Commit message (Expand) | Author | Lines |
| 2024-12-26 | Rollup merge of #134379 - bjoernager:slice-as-array, r=dtolnay | Jacob Pratt | -0/+60 |
| 2024-12-26 | docs: inline `core::ffi::c_str` types to `core::ffi` | Michael Howell | -2/+2 |
| 2024-12-26 | docs: inline `std::ffi::c_str` types to `std::ffi` | Michael Howell | -5/+5 |
| 2024-12-26 | unwinding: bump version to fix asm | Sean Cross | -3/+3 |
| 2024-12-26 | Replace string function name matching with enums where possible | Trevor Gross | -62/+46 |
| 2024-12-26 | Impl FromIterator for tuples with arity 1-12 | Sebastian Hahn | -33/+47 |
| 2024-12-26 | Fix formatting | Sebastian Hahn | -19/+19 |
| 2024-12-26 | docs: update code example for Iterator#rposition | wtlin1228 | -0/+1 |
| 2024-12-26 | chore: release v0.1.140 | github-actions[bot] | -1/+9 |
| 2024-12-26 | Disable f128 for amdgpu (#737) | Sebastian Neubauer | -0/+2 |
| 2024-12-25 | stabilize const_alloc_layout | Ralf Jung | -10/+5 |
| 2024-12-25 | rename typed_swap → typed_swap_nonoverlapping | Ralf Jung | -3/+18 |
| 2024-12-25 | stabilize const_swap | Ralf Jung | -9/+7 |
| 2024-12-25 | Auto merge of #134729 - oliveredget:typo, r=jieyouxu | bors | -4/+4 |
| 2024-12-24 | Auto merge of #134722 - ChrisDenton:trunc, r=Amanieu | bors | -8/+20 |
| 2024-12-24 | Auto merge of #134333 - daxpedda:stdarch-bump, r=daxpedda | bors | -11/+2 |
| 2024-12-24 | Fix compilation issues on other unixes | Alex Saveau | -44/+53 |
| 2024-12-24 | Bump `stdarch` | daxpedda | -11/+2 |
| 2024-12-24 | chore: fix typos | oliveredget | -4/+4 |
| 2024-12-24 | Use scoped threads in `std::sync::Barrier` examples | deltragon | -34/+26 |
| 2024-12-24 | Windows: Use FILE_ALLOCATION_INFO for truncation | Chris Denton | -8/+20 |
| 2024-12-24 | Rollup merge of #134689 - RalfJung:ptr-swap-test, r=oli-obk | Stuart Cook | -48/+103 |
| 2024-12-24 | Rollup merge of #134662 - ionicmc-rs:any-safety-docs, r=Amanieu | Stuart Cook | -2/+12 |
| 2024-12-23 | core_arch: Add LoongArch basic intrinsics | WANG Rui | -0/+365 |
| 2024-12-23 | core: fix const ptr::swap_nonoverlapping when there are pointers at odd offse... | Ralf Jung | -48/+103 |
| 2024-12-23 | Rollup merge of #134363 - estebank:derive-default, r=SparrowLii | Matthias Krüger | -33/+7 |
| 2024-12-23 | Expand feature detection on AArch64 Darwin | Laine Taffin Altman | -38/+84 |
| 2024-12-23 | Rollup merge of #134672 - Zalathar:revert-coverage-attr, r=wesleywiser | Trevor Gross | -6/+4 |
| 2024-12-23 | Use `#[derive(Default)]` instead of manually implementing it | Esteban Küber | -33/+7 |
| 2024-12-23 | Revert "Auto merge of #130766 - clarfonthey:stable-coverage-attribute, r=wesl... | Zalathar | -6/+4 |
| 2024-12-23 | Auto merge of #134666 - matthiaskrgr:rollup-whe0chp, r=matthiaskrgr | bors | -7/+46 |
| 2024-12-22 | Rename associated type helpers, add `OpITy` | Trevor Gross | -6/+8 |
| 2024-12-22 | Introduce helper types for accessing trait items | Trevor Gross | -5/+23 |
| 2024-12-22 | Auto merge of #131311 - rust-lang:cargo_update, r=clubby789 | bors | -2/+2 |
| 2024-12-22 | Fix a bug in `abs_diff` | Trevor Gross | -2/+2 |
| 2024-12-22 | Fix a bug in `abs_diff` | Trevor Gross | -6/+2 |
| 2024-12-22 | Rollup merge of #134642 - kpreid:pointerlike-cell, r=compiler-errors | Matthias Krüger | -1/+15 |
| 2024-12-22 | Rollup merge of #134583 - Enselic:maybe-uninit-transmute, r=workingjubilee | Matthias Krüger | -0/+20 |
| 2024-12-22 | Rollup merge of #130289 - intgr-forks:Permissions-readonly-vs-unix-root, r=Ch... | Matthias Krüger | -6/+11 |
| 2024-12-22 | Adjust syntax | Caio | -21/+280 |
| 2024-12-22 | Fixes safety docs for `dyn Any + Send {+ Sync}` | Mostafa Khaled | -2/+12 |
| 2024-12-22 | Implement `PointerLike` for `isize`, `NonNull`, `Cell`, `UnsafeCell`, and `Sy... | Kevin Reid | -1/+15 |
| 2024-12-22 | Auto merge of #134330 - scottmcm:no-more-rvalue-len, r=matthewjasper | bors | -2/+1 |
| 2024-12-22 | docs: Permissions.readonly() also ignores root user special permissions | Marti Raudsepp | -6/+11 |
| 2024-12-22 | Improve prose around `as_slice` example of IterMut | Marijn Schouten | -22/+20 |
| 2024-12-22 | Specify only that duplicates are discarded, not the order. | Kevin Reid | -8/+10 |
| 2024-12-22 | Auto merge of #131193 - EFanZh:asserts-vec-len, r=the8472 | bors | -2/+20 |
| 2024-12-22 | Delete `Rvalue::Len` | Scott McMurray | -2/+1 |
| 2024-12-22 | docs: `transmute<&mut T, &mut MaybeUninit<T>>` is unsound when exposed to saf... | Martin Nordholts | -0/+20 |
| 2024-12-22 | Remove tests against system musl | Trevor Gross | -501/+12 |