| Age | Commit message (Expand) | Author | Lines |
| 2025-04-09 | replace version placeholder | Boxy | -6/+6 |
| 2025-03-14 | Mv os-specific trait impl of `Pipe*` into `std::os::*` | Jiahao XU | -0/+42 |
| 2024-11-19 | UniqueRc: platform-specific AsFd/Handle/etc impls to mirror Rc | Zachary S | -0/+8 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -5/+1 |
| 2024-07-26 | Fix doc nits | John Arundel | -1/+1 |
| 2024-07-15 | lib: replace some `mem::forget`'s with `ManuallyDrop` | Pavel Grigorenko | -4/+2 |
| 2024-03-14 | Rollup merge of #119029 - dylni:avoid-closing-invalid-handles, r=ChrisDenton | Matthias Krüger | -21/+47 |
| 2024-03-09 | Rollup merge of #114655 - nbdd0121:io-safety, r=dtolnay | Guillaume Boisseau | -5/+5 |
| 2024-03-09 | Avoid closing invalid handles | dylni | -21/+47 |
| 2024-02-04 | Document various I/O handle conversions | Ryan Lowe | -0/+5 |
| 2024-01-28 | Make `impl<T: AsHandle>` impl take `?Sized` | Gary Guo | -5/+5 |
| 2023-11-22 | useless_conversion | Chris Denton | -1/+1 |
| 2023-05-30 | Swap out CURRENT_RUSTC_VERSION to 1.71.0 | Mark Rousskov | -3/+3 |
| 2023-05-14 | Auto merge of #108196 - sunfishcode:sunfishcode/windows-as-socket-impls, r=dt... | bors | -0/+36 |
| 2023-05-09 | Don't force include Windows goop when documenting | Chris Denton | -9/+9 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -1/+1 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-04-10 | Stabilize IsTerminal | Josh Triplett | -1/+1 |
| 2023-02-17 | Implement `AsHandle`/`AsSocket` for `Arc`/`Rc`/`Box` on Windows | Dan Gohman | -0/+36 |
| 2022-10-15 | Add `IsTerminal` trait to determine if a descriptor or handle is a terminal | Josh Triplett | -0/+17 |
| 2022-06-15 | Add the new stability attributes, for Windows. | Dan Gohman | -0/+1 |
| 2022-06-15 | Revise the documentation for `try_clone`. | Dan Gohman | -2/+2 |
| 2022-06-15 | Add `BorrowedFd::try_clone_to_owned`. | Dan Gohman | -0/+8 |
| 2022-06-15 | Document that `BorrowedFd` may be used to do a `dup`. | Dan Gohman | -3/+3 |
| 2022-06-14 | Implement stabilization of `#[feature(io_safety)]`. | Dan Gohman | -16/+56 |
| 2022-05-17 | Revert "Auto merge of #96441 - ChrisDenton:sync-pipes, r=m-ou-se" | Mark Rousskov | -13/+0 |
| 2022-05-15 | fix use of SetHandleInformation on UWP | bdbai | -0/+1 |
| 2022-05-11 | Fix comment syntax. | Dan Gohman | -0/+1 |
| 2022-05-11 | Relax the wording about the meaning of -1. | Dan Gohman | -6/+11 |
| 2022-05-11 | HandleOrNull can hold null, and HandleOrInvalid can hold INVALID_HANDLE_VALUE. | Dan Gohman | -9/+5 |
| 2022-05-10 | Fix incorrect mentions of `OwnedFd` and `BorrowedFd` in Windows docs. | Dan Gohman | -4/+4 |
| 2022-05-10 | Clarify what values `BorrowedHandle`, `OwnedHandle` etc. can hold. | Dan Gohman | -12/+17 |
| 2022-05-10 | Auto merge of #96232 - sunfishcode:sunfishcode/io-safety-const-fns, r=joshtri... | bors | -1/+1 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -1/+0 |
| 2022-04-29 | Auto merge of #96441 - ChrisDenton:sync-pipes, r=m-ou-se | bors | -0/+12 |
| 2022-04-26 | Add `set_inheritable` for Windows `Handle`s | Chris Denton | -0/+12 |
| 2022-04-19 | Make `BorrowedFd::borrow_raw` a const fn. | Dan Gohman | -1/+1 |
| 2022-04-18 | Add a comment explaining the `(())` idiom for empty structs. | Dan Gohman | -0/+2 |
| 2022-04-18 | Split `NotHandle` into `NullHandleError` and `InvalidHandleError`. | Dan Gohman | -14/+31 |
| 2022-04-18 | Move the `Error` impl for `NotHandle` out of platform-independent code. | Dan Gohman | -0/+3 |
| 2022-04-18 | Fix an incorrect word in a comment. | Dan Gohman | -2/+2 |
| 2022-04-18 | Define a dedicated error type for `HandleOrNull` and `HandleOrInvalid`. | Dan Gohman | -6/+20 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -1/+2 |
| 2022-03-20 | Preserve the Windows `GetLastError` error in `HandleOrInvalid`. | Dan Gohman | -2/+18 |
| 2022-03-04 | Fix a compilation error. | Dan Gohman | -1/+1 |
| 2022-03-04 | Consistently present absent stdio handles on Windows as NULL handles. | Dan Gohman | -1/+11 |
| 2022-03-03 | Use `HandleOrNull` and `HandleOrInvalid` in the Windows FFI bindings. | Dan Gohman | -0/+1 |
| 2022-03-03 | Rollup merge of #93562 - sunfishcode:sunfishcode/io-docs, r=joshtriplett | Matthias Krüger | -27/+11 |
| 2022-03-03 | Rollup merge of #93663 - sunfishcode:sunfishcode/as-raw-name, r=joshtriplett | Dylan DPC | -12/+12 |
| 2022-03-03 | Rollup merge of #93354 - sunfishcode:sunfishcode/document-borrowedfd-toowned,... | Dylan DPC | -0/+4 |