| Age | Commit message (Expand) | Author | Lines |
| 2023-11-22 | unnecessary_mut_passed | Chris Denton | -2/+2 |
| 2023-11-22 | useless_conversion | Chris Denton | -1/+1 |
| 2023-09-28 | Auto merge of #114882 - ChrisDenton:riddle-me, r=dtolnay | bors | -4/+4 |
| 2023-09-22 | fix OS-specific I/O safety docs since the io_safety feature is stable | Ralf Jung | -4/+7 |
| 2023-08-28 | Abstract over internal `SOCKET` type | Chris Denton | -4/+4 |
| 2023-08-14 | wording; and explain some of the possible consequences of violating io-safety | Ralf Jung | -1/+1 |
| 2023-08-14 | sync the various FromRawFd trait docs, and remove 'valid' | Ralf Jung | -2/+4 |
| 2023-08-13 | add more explicit I/O safety documentation | Ralf Jung | -1/+2 |
| 2023-05-30 | Swap out CURRENT_RUSTC_VERSION to 1.71.0 | Mark Rousskov | -6/+6 |
| 2023-05-14 | Auto merge of #108196 - sunfishcode:sunfishcode/windows-as-socket-impls, r=dt... | bors | -0/+72 |
| 2023-05-09 | Don't force include Windows goop when documenting | Chris Denton | -34/+40 |
| 2023-05-05 | Use new bindings | Chris Denton | -1/+1 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -1/+1 |
| 2023-04-26 | Spelling library/ | Josh Soref | -2/+2 |
| 2023-04-10 | Stabilize IsTerminal | Josh Triplett | -1/+1 |
| 2023-02-17 | Implement `AsHandle`/`AsSocket` for `Arc`/`Rc`/`Box` on Windows | Dan Gohman | -0/+72 |
| 2022-11-20 | enable fuzzy_provenance_casts lint in libstd | Ralf Jung | -0/+1 |
| 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/+2 |
| 2022-06-15 | Revise the documentation for `try_clone`. | Dan Gohman | -4/+4 |
| 2022-06-15 | Add `BorrowedFd::try_clone_to_owned`. | Dan Gohman | -14/+30 |
| 2022-06-15 | Document that `BorrowedFd` may be used to do a `dup`. | Dan Gohman | -3/+9 |
| 2022-06-14 | Implement stabilization of `#[feature(io_safety)]`. | Dan Gohman | -25/+86 |
| 2022-05-17 | Revert "Auto merge of #96441 - ChrisDenton:sync-pipes, r=m-ou-se" | Mark Rousskov | -13/+0 |
| 2022-05-15 | Rollup merge of #97060 - bdbai:fix/uwphandle, r=ChrisDenton | Dylan DPC | -0/+2 |
| 2022-05-15 | Rollup merge of #96947 - sunfishcode:sunfishcode/rustc-nonnull-optimization-g... | Dylan DPC | -0/+26 |
| 2022-05-15 | fix use of SetHandleInformation on UWP | bdbai | -0/+2 |
| 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 | Fix attribute name. | Dan Gohman | -2/+2 |
| 2022-05-11 | RawSocket is unsigned on Windows. | Dan Gohman | -10/+9 |
| 2022-05-11 | Fix duplicate import on Windows. | Dan Gohman | -1/+1 |
| 2022-05-11 | Add rustc_nonnull_optimization_guaranteed to Owned/Borrowed Fd/Socket | Dan Gohman | -0/+27 |
| 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 | Also document that `as_raw_handle` may return NULL. | Dan Gohman | -0/+7 |
| 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 | -3/+3 |
| 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 | -3/+3 |
| 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/+3 |
| 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 |