| Age | Commit message (Expand) | Author | Lines |
| 2020-07-14 | Rollup merge of #74271 - lzutao:cmdbytes, r=LukasKalbertodt | Manish Goregaokar | -14/+12 |
| 2020-07-14 | Rollup merge of #74263 - RalfJung:thread-local, r=Mark-Simulacrum | Manish Goregaokar | -67/+83 |
| 2020-07-14 | Rollup merge of #73759 - GuillaumeGomez:stdin-examples, r=Dylan-DPC | Manish Goregaokar | -0/+31 |
| 2020-07-14 | Rollup merge of #74220 - lzutao:windows-path-com, r=LukasKalbertodt | Manish Goregaokar | -69/+103 |
| 2020-07-14 | Rollup merge of #73866 - Goirad:fix-entry-improper-ctypes, r=davidtwco | Manish Goregaokar | -3/+5 |
| 2020-07-13 | Rollup merge of #73867 - poliorcetics:union-keyword, r=joshtriplett | Manish Goregaokar | -2/+66 |
| 2020-07-12 | process_unix: prefer i32::*_be_bytes over manually shifting bytes | Lzu Tao | -14/+12 |
| 2020-07-12 | Reduce unsafe scope | Lzu Tao | -49/+48 |
| 2020-07-12 | Prefer empty OsStr over unsafe cast from [u8] | Lzu Tao | -1/+1 |
| 2020-07-12 | Rewrite parse_two_comps | Lzu Tao | -10/+41 |
| 2020-07-12 | Make use of slice::strip_prefix and slice pattern | Lzu Tao | -27/+25 |
| 2020-07-12 | Make is_valid_drive_letter function | Lzu Tao | -2/+8 |
| 2020-07-12 | Move constants to top file | Lzu Tao | -2/+3 |
| 2020-07-12 | Remove the useless indentation | Lzu Tao | -3/+2 |
| 2020-07-12 | adjust remaining targets | Ralf Jung | -25/+21 |
| 2020-07-12 | rename fast_thread_local -> thread_local_dtor; thread_local -> thread_local_key | Ralf Jung | -45/+65 |
| 2020-07-12 | Sorting feature attributes in std | Lzu Tao | -3/+3 |
| 2020-07-10 | Rollup merge of #74127 - tamird:allowlist, r=oli-obk | Manish Goregaokar | -1/+1 |
| 2020-07-10 | Rollup merge of #74076 - sunfishcode:wasi-fileext-newmethods, r=alexcrichton | Manish Goregaokar | -4/+137 |
| 2020-07-10 | Avoid "whitelist" | Tamir Duberstein | -1/+1 |
| 2020-07-07 | Make WASI's FileExt's read_at/write_at consistent with other targets. | Dan Gohman | -4/+43 |
| 2020-07-07 | Add `read_exact_at` and `write_all_at` to WASI's `FileExt` | Dan Gohman | -0/+94 |
| 2020-07-07 | Auto merge of #74006 - euclio:sys-unix-static-mut, r=oli-obk | bors | -26/+33 |
| 2020-07-06 | Rollup merge of #74074 - sunfishcode:windows-openoptionsext-return-type, r=Lu... | Manish Goregaokar | -1/+1 |
| 2020-07-06 | Rollup merge of #73962 - ryr3:unsafe_tcp, r=LukasKalbertodt | Manish Goregaokar | -2/+5 |
| 2020-07-06 | Rollup merge of #70563 - GuillaumeGomez:page-hash-handling, r=ollie27,kinnison | Manish Goregaokar | -2/+2 |
| 2020-07-06 | libstd: remove some mutable statics in sys::unix | Andy Russell | -26/+33 |
| 2020-07-05 | Fix the return type of Windows' `OpenOptionsExt::security_qos_flags`. | Dan Gohman | -1/+1 |
| 2020-07-03 | Rollup merge of #73925 - eduardosm:improve-pr72617-comments, r=RalfJung | Manish Goregaokar | -4/+10 |
| 2020-07-02 | Further improve comments in libstd/panicking.rs. | Eduardo Sánchez Muñoz | -4/+5 |
| 2020-07-02 | Fix links | Guillaume Gomez | -2/+2 |
| 2020-07-02 | libstd/net/tcp.rs: #![deny(unsafe_op_in_unsafe_fn)] | Yashhwanth Ram | -2/+5 |
| 2020-07-01 | Rollup merge of #73909 - eltonlaw:unsafe-libstd-fs-rs, r=sfackler | Manish Goregaokar | -2/+6 |
| 2020-07-01 | Improve comments from https://github.com/rust-lang/rust/pull/72617, as sugges... | Eduardo Sánchez Muñoz | -4/+9 |
| 2020-07-01 | Rollup merge of #73805 - poliorcetics:type-keyword, r=kennytm | Manish Goregaokar | -2/+37 |
| 2020-07-01 | Rollup merge of #73752 - TyPR124:invalid-parameter-error, r=LukasKalbertodt | Manish Goregaokar | -0/+1 |
| 2020-07-01 | Rollup merge of #73716 - poliorcetics:static-keyword, r=LukasKalbertodt | Manish Goregaokar | -3/+76 |
| 2020-07-01 | Rollup merge of #72445 - anp:stabilize-track-caller, r=oli-obk | Manish Goregaokar | -1/+1 |
| 2020-07-01 | Rollup merge of #72369 - Lucretiel:socketaddr-parse, r=dtolnay | Manish Goregaokar | -193/+289 |
| 2020-06-30 | Stabilize `#[track_caller]`. | Adam Perry | -1/+1 |
| 2020-06-30 | enable unsafe_op_in_unsafe_fn lint | Elton Law | -0/+2 |
| 2020-06-30 | `#[deny(unsafe_op_in_unsafe_fn)]` in libstd/fs.rs | Elton Law | -2/+4 |
| 2020-06-30 | Bring net/parser.rs up to modern up to date with modern rust patterns | Nathan West | -193/+289 |
| 2020-06-30 | Clarify some parts by applying the suggestions from review | Poliorcetics | -6/+7 |
| 2020-06-29 | Document the union keyword | Alexis Bourget | -2/+65 |
| 2020-06-29 | Obviate #[allow(improper_ctypes_definitions)] | Dario Gonzalez | -3/+5 |
| 2020-06-28 | Fix small nits | Alexis Bourget | -4/+3 |
| 2020-06-28 | Apply suggestions, reformulating some paragraphs and improving some examples | Alexis Bourget | -38/+36 |
| 2020-06-28 | Rollup merge of #73826 - cjrh:cjrh-patch-1, r=jonas-schievink | Manish Goregaokar | -1/+1 |
| 2020-06-28 | Rollup merge of #73817 - jumbatm:rename-to-clashing-extern-declarations, r=pe... | Manish Goregaokar | -2/+2 |