| Age | Commit message (Expand) | Author | Lines |
| 2021-01-31 | Implement size_hint for BufReader | Xavientois | -2/+21 |
| 2021-01-31 | Add doc aliases for "delete" | Konrad Borowski | -0/+5 |
| 2021-01-31 | Auto merge of #81478 - sivadeilra:windows_dll_imports, r=m-ou-se | bors | -71/+95 |
| 2021-01-31 | Rollup merge of #81550 - xfix:replace-mention-of-predecessor, r=jonas-schievink | Jonas Schievink | -4/+4 |
| 2021-01-31 | Rollup merge of #78044 - oberien:empty-seek, r=m-ou-se | Jonas Schievink | -2/+37 |
| 2021-01-30 | impl Seek for Empty | oberien | -2/+37 |
| 2021-01-30 | Replace predecessor with range in collections documentation | Konrad Borowski | -4/+4 |
| 2021-01-30 | Misc ip documentation fixes | est31 | -7/+7 |
| 2021-01-30 | Rollup merge of #80886 - RalfJung:stable-raw-ref-macros, r=m-ou-se | Yuki Okushi | -1/+0 |
| 2021-01-30 | Rollup merge of #79023 - yoshuawuyts:stream, r=KodrAus | Yuki Okushi | -0/+17 |
| 2021-01-30 | Expose correct symlink API on WASI | Ingvar Stepanyan | -9/+5 |
| 2021-01-29 | sys: use `process::abort()` instead of `arch::wasm32::unreachable()` | Miguel Ojeda | -1/+1 |
| 2021-01-29 | Resolve DLL imports at CRT startup, not on demand | Arlie Davis | -71/+95 |
| 2021-01-29 | rename raw_const/mut -> const/mut_addr_of, and stabilize them | Ralf Jung | -1/+0 |
| 2021-01-28 | Rollup merge of #70904 - LukasKalbertodt:stabilize-seek-convenience, r=m-ou-se | Yuki Okushi | -5/+3 |
| 2021-01-27 | Auto merge of #81335 - thomwiggers:no-panic-shrink-to, r=Mark-Simulacrum | bors | -8/+3 |
| 2021-01-26 | shrink_to shouldn't panic on len greater than capacity | Thom Wiggers | -8/+3 |
| 2021-01-25 | Make std::panic_2021 an alias for core::panic_2021. | Mara Bos | -10/+1 |
| 2021-01-25 | Implement new panic!() behaviour for Rust 2021. | Mara Bos | -0/+47 |
| 2021-01-24 | Rollup merge of #79174 - taiki-e:std-future, r=Mark-Simulacrum | Jonas Schievink | -20/+2 |
| 2021-01-24 | Rollup merge of #75180 - KodrAus:feat/error-by-ref, r=m-ou-se | Jonas Schievink | -0/+21 |
| 2021-01-24 | Auto merge of #81250 - sivadeilra:remove_xp_compat, r=joshtriplett,m-ou-se | bors | -145/+81 |
| 2021-01-24 | Stabilize `Seek::stream_position` & change feature of `Seek::stream_len` | Lukas Kalbertodt | -5/+3 |
| 2021-01-23 | Rollup merge of #81281 - a1phyr:inline_path, r=dtolnay | Jonas Schievink | -0/+103 |
| 2021-01-23 | Add Frames iterator for Backtrace | Sean Chen | -38/+92 |
| 2021-01-22 | Auto merge of #72160 - slo1:libstd-setgroups, r=KodrAus | bors | -7/+41 |
| 2021-01-22 | Inline methods of Path and OsString | BenoƮt du Garreau | -0/+103 |
| 2021-01-22 | Add `core::stream::Stream` | Yoshua Wuyts | -0/+17 |
| 2021-01-22 | Rollup merge of #81233 - lzutao:dbg, r=KodrAus | Mara Bos | -0/+4 |
| 2021-01-22 | Rollup merge of #81202 - lzutao:dbg_ipv6, r=Amanieu | Mara Bos | -4/+7 |
| 2021-01-22 | Rollup merge of #81194 - m-ou-se:stabilize-panic-any, r=m-ou-se | Mara Bos | -2/+2 |
| 2021-01-22 | Remove delay-binding for Win XP and Vista | Arlie Davis | -145/+81 |
| 2021-01-21 | Add setgroups to std::os::unix::process::CommandExt | slo1 | -7/+41 |
| 2021-01-21 | Auto merge of #81240 - JohnTitor:rollup-ieaz82a, r=JohnTitor | bors | -21/+24 |
| 2021-01-21 | Rollup merge of #81219 - joshtriplett:temp_dir-docs, r=sfackler | Yuki Okushi | -6/+9 |
| 2021-01-21 | Rollup merge of #80172 - camelid:prelude-docs-consistent-punct, r=steveklabnik | Yuki Okushi | -15/+15 |
| 2021-01-21 | Document why cannot use concat! in dbg! | Lzu Tao | -0/+4 |
| 2021-01-20 | Deprecate-in-future the constants superceded by RFC 2700 | bstrie | -27/+32 |
| 2021-01-20 | Document security implications of std::env::temp_dir | Josh Triplett | -6/+9 |
| 2021-01-20 | Dont prefix 0x when `dbg!(ipv6)` | Lzu Tao | -2/+5 |
| 2021-01-20 | Use slice::split_first instead of manuall slicing | Lzu Tao | -2/+2 |
| 2021-01-19 | Auto merge of #79578 - alexcrichton:update-waasi, r=KodrAus | bors | -22/+78 |
| 2021-01-19 | Make 'static bound on panic_any explicit. | Mara Bos | -1/+1 |
| 2021-01-19 | Stabilize std::panic::panic_any. | Mara Bos | -1/+1 |
| 2021-01-19 | Auto merge of #79705 - ijackson:bufwriter-disassemble, r=m-ou-se | bors | -0/+99 |
| 2021-01-17 | Auto merge of #80537 - ehuss:macos-posix-spawn-chdir, r=dtolnay | bors | -4/+14 |
| 2021-01-17 | Don't use posix_spawn_file_actions_addchdir_np on macOS. | Eric Huss | -4/+14 |
| 2021-01-17 | Add benchmark and fast path for BufReader::read_exact | Ben Kimock | -17/+47 |
| 2021-01-16 | Rollup merge of #80681 - ChrisJefferson:logic-error-doc, r=m-ou-se | Mara Bos | -1/+6 |
| 2021-01-16 | Clarify what the effects of a 'logic error' are | Chris Jefferson | -1/+6 |