| Age | Commit message (Expand) | Author | Lines |
| 2022-09-21 | Add doc aliases on Sized trait | Guillaume Gomez | -0/+1 |
| 2022-09-21 | Use fetch_update in sync::Weak::upgrade | Konrad Borowski | -23/+16 |
| 2022-09-21 | Rollup merge of #102058 - mqudsi:path_extension_docs, r=thomcc | Dylan DPC | -1/+1 |
| 2022-09-21 | Rollup merge of #101995 - scottmcm:carrying-mul-example, r=Mark-Simulacrum | Dylan DPC | -0/+30 |
| 2022-09-21 | Rollup merge of #89891 - ojeda:modular-alloc, r=Mark-Simulacrum | Dylan DPC | -3/+6 |
| 2022-09-21 | Add missing documentation for `bool::from_str` | Guillaume Gomez | -2/+2 |
| 2022-09-21 | Auto merge of #100214 - scottmcm:strict-range, r=thomcc | bors | -31/+268 |
| 2022-09-20 | Auto merge of #100581 - joboet:sync_rwlock_everywhere, r=thomcc | bors | -151/+62 |
| 2022-09-20 | Add `ptr::Alignment` type | Scott McMurray | -53/+90 |
| 2022-09-20 | Remove `RtlGenRandom` (take two) | Chris Denton | -53/+29 |
| 2022-09-20 | Clarify Path::extension() semantics in docs abstract | Mahmoud Al-Qudsi | -1/+1 |
| 2022-09-20 | Add the `#[derive_const]` attribute | Deadbeef | -0/+21 |
| 2022-09-19 | Optimize `array::IntoIter` | Scott McMurray | -31/+268 |
| 2022-09-20 | Remove use of `io::ErrorKind::Other` in std | Patiga | -2/+2 |
| 2022-09-19 | std: use `sync::RwLock` for internal statics | joboet | -151/+62 |
| 2022-09-19 | Rollup merge of #101798 - y86-dev:const_waker, r=lcnr | Matthias Krüger | -4/+26 |
| 2022-09-19 | Rollup merge of #101389 - lukaslueg:rcgetmutdocs, r=m-ou-se | Matthias Krüger | -9/+12 |
| 2022-09-19 | Added tracking issue | y86-dev | -3/+3 |
| 2022-09-19 | Document surprising and dangerous fs::Permissions behaviour on Unix | Tim Hutt | -3/+64 |
| 2022-09-18 | Add another example for `uN::carrying_mul` | Scott McMurray | -0/+30 |
| 2022-09-18 | Auto merge of #101955 - jam1garner:fix-proc-macro-typo, r=petrochenkov | bors | -1/+1 |
| 2022-09-18 | Move `unix_socket_abstract` feature API to `SocketAddrExt`. | John Millikin | -83/+123 |
| 2022-09-18 | Adjust `tcp_quickack` feature to allow other `os::linux::net` features. | John Millikin | -12/+17 |
| 2022-09-18 | Auto merge of #101816 - raldone01:cleanup/select_nth_unstable, r=Mark-Simulacrum | bors | -8/+5 |
| 2022-09-17 | Fix typo in proc_macro Span::eq | jam1garner | -1/+1 |
| 2022-09-17 | Auto merge of #101949 - matthiaskrgr:rollup-xu5cqnd, r=matthiaskrgr | bors | -173/+190 |
| 2022-09-17 | Rollup merge of #101821 - thomcc:unicode-15, r=Manishearth | Matthias Krüger | -173/+190 |
| 2022-09-17 | Add `Box<[T; N]>: TryFrom<Vec<T>>` | Scott McMurray | -1/+50 |
| 2022-09-17 | Rollup merge of #101861 - wesleywiser:update_stdarch, r=Amanieu | Matthias Krüger | -1/+1 |
| 2022-09-17 | Rollup merge of #101672 - idigdoug:array_try_into, r=Mark-Simulacrum | Matthias Krüger | -2/+92 |
| 2022-09-17 | Auto merge of #101938 - Dylan-DPC:rollup-6vlohhs, r=Dylan-DPC | bors | -3/+3 |
| 2022-09-17 | Rollup merge of #101931 - msakuta:master, r=thomcc | Dylan DPC | -1/+1 |
| 2022-09-17 | Rollup merge of #93628 - est31:stabilize_let_else, r=joshtriplett | Dylan DPC | -2/+2 |
| 2022-09-17 | Auto merge of #101784 - reitermarkus:const-memchr, r=thomcc | bors | -25/+23 |
| 2022-09-17 | Fix a typo in docstring | msakuta | -1/+1 |
| 2022-09-16 | Do not panic when a test function returns Result::Err. | Bradford Hovinen | -58/+129 |
| 2022-09-16 | Rollup merge of #101802 - chriss0612:const_fn_trait_ref_impls, r=fee1-dead | Dylan DPC | -10/+15 |
| 2022-09-16 | Add `const_trait` to `Allocator` | Deadbeef | -0/+5 |
| 2022-09-16 | append_const_msg for std traits | Deadbeef | -59/+16 |
| 2022-09-16 | Mark `Drop` with `#[const_trait]` | Deadbeef | -0/+1 |
| 2022-09-16 | Do not implement `Unpin` as const | Deadbeef | -2/+1 |
| 2022-09-16 | Prevent errors for stage0 rustc build | Deadbeef | -1/+1 |
| 2022-09-16 | Add more `const_trait` annotations | Deadbeef | -3/+26 |
| 2022-09-16 | Add `const_trait`s | Deadbeef | -0/+11 |
| 2022-09-16 | Require `#[const_trait]` for `const` `impl`s | Deadbeef | -0/+5 |
| 2022-09-15 | Only enable the let_else feature on bootstrap | est31 | -2/+2 |
| 2022-09-15 | Update stdarch | Wesley Wiser | -1/+1 |
| 2022-09-15 | Rollup merge of #101810 - raldone01:feat/const_partial_eq_ordering, r=fee1-dead | Matthias Krüger | -1/+14 |
| 2022-09-15 | Rollup merge of #101559 - andrewpollack:add-backtrace-off-fuchsia, r=tmandry | Matthias Krüger | -17/+16 |
| 2022-09-14 | Adding backtrace off option for fuchsia targets | Andrew Pollack | -17/+16 |