| Age | Commit message (Expand) | Author | Lines |
| 2022-02-20 | use `BOOL` for `TCP_NODELAY` `setsockopt` value on Windows | Chris Copeland | -2/+2 |
| 2022-02-17 | Keep the path after `program_exists` succeeds | Chris Denton | -22/+23 |
| 2022-02-17 | Use verbatim paths for `process::Command` if necessary | Chris Denton | -13/+26 |
| 2022-02-14 | Maintain broken symlink behaviour for the Windows exe resolver | Chris Denton | -2/+30 |
| 2022-02-13 | Auto merge of #91673 - ChrisDenton:path-absolute, r=Mark-Simulacrum | bors | -0/+16 |
| 2022-02-13 | make Instant::{duration_since, elapsed, sub} saturating and remove workarounds | The8472 | -8/+0 |
| 2022-02-10 | Rename to `InvalidFilename` | Yuki Okushi | -2/+2 |
| 2022-02-10 | Map `ERROR_INVALID_NAME` to `FilenameInvalid` | Yuki Okushi | -1/+2 |
| 2022-02-10 | Rename `FilenameTooLong` to `FilenameInvalid` | Yuki Okushi | -1/+1 |
| 2022-02-10 | windows: Map `ERROR_INVALID_NAME` as `InvalidInput` | Yuki Okushi | -1/+1 |
| 2022-02-09 | Rollup merge of #93445 - yaahc:exitcode-constructor, r=dtolnay | Yuki Okushi | -0/+6 |
| 2022-02-08 | Rollup merge of #93206 - ChrisDenton:ntopenfile, r=nagisa | Matthias Krüger | -6/+17 |
| 2022-02-08 | `std::path::absolute` | Chris Denton | -0/+16 |
| 2022-02-06 | Add From<u8> for ExitCode | Jane Lusby | -0/+6 |
| 2022-02-04 | Hide Repr details from io::Error, and rework `io::Error::new_const`. | Thom Chiovoloni | -27/+25 |
| 2022-01-25 | make Windows abort_internal Miri-compatible | Ralf Jung | -0/+1 |
| 2022-01-25 | Rollup merge of #88794 - sunfishcode:sunfishcode/try-clone, r=joshtriplett | Matthias Krüger | -76/+9 |
| 2022-01-24 | Use `NtCreateFile` instead of `NtOpenFile` to open a file | Chris Denton | -6/+17 |
| 2022-01-19 | Fix CVE-2022-21658 for Windows | Chris Denton | -27/+419 |
| 2022-01-05 | Rollup merge of #92517 - ChrisDenton:explicit-path, r=dtolnay | Matthias Krüger | -33/+37 |
| 2022-01-04 | Rollup merge of #91754 - Patrick-Poitras:rm-4byte-minimum-stdio-windows, r=Ma... | Matthias Krüger | -18/+54 |
| 2022-01-03 | Explicitly pass `PATH` to the Windows exe resolver | Chris Denton | -33/+37 |
| 2021-12-28 | Fix windows build | Xuanwo | -0/+9 |
| 2021-12-23 | Rollup merge of #92208 - ChrisDenton:win-bat-cmd, r=dtolnay | Matthias Krüger | -0/+16 |
| 2021-12-22 | Fix tests | Chris Denton | -0/+4 |
| 2021-12-16 | Quote bat script command line | Chris Denton | -0/+16 |
| 2021-12-15 | Modifications to buffer UTF-16 internally so that there is no longer a 4-byte... | PFPoitras | -18/+54 |
| 2021-12-15 | Rollup merge of #91916 - steffahn:fix-typos, r=dtolnay | Matthias Krüger | -2/+2 |
| 2021-12-14 | Fix a bunch of typos | Frank Steffahn | -2/+2 |
| 2021-12-12 | Stabilize asm! and global_asm! | Amanieu d'Antras | -3/+3 |
| 2021-12-09 | Auto merge of #81156 - DrMeepster:read_buf, r=joshtriplett | bors | -2/+39 |
| 2021-12-09 | Rollup merge of #89999 - talagrand:GetTempPath2, r=m-ou-se | Matthias Krüger | -1/+7 |
| 2021-11-20 | Auto merge of #87704 - ChrisDenton:win-resolve-exe, r=yaahc | bors | -29/+216 |
| 2021-11-17 | windows: Return the "Not Found" error when a path is empty | Yuki Okushi | -4/+3 |
| 2021-11-02 | more efficent File::read_buf impl for windows and unix | DrMeepster | -2/+39 |
| 2021-11-01 | Run destructors from existing tls callback | Chris Denton | -23/+14 |
| 2021-10-31 | Windows: Resolve Command program without using the current directory | Chris Denton | -29/+216 |
| 2021-10-31 | Windows thread-local keyless drop | Chris Denton | -1/+36 |
| 2021-10-30 | Auto merge of #89174 - ChrisDenton:automatic-verbatim-paths, r=dtolnay | bors | -13/+174 |
| 2021-10-26 | Clarify platform availability of GetTempPath2 | Eugene Talagrand | -1/+1 |
| 2021-10-23 | Fix typo | Chris Denton | -1/+1 |
| 2021-10-23 | Make sure `CreateDirectoryW` works for path lengths > 247 | Chris Denton | -1/+12 |
| 2021-10-22 | Add comment documenting why we can't use a simpler solution | Steven | -0/+4 |
| 2021-10-18 | Update std::env::temp_dir to use GetTempPath2 on Windows when available. | Eugene Talagrand | -1/+7 |
| 2021-10-15 | Auto merge of #84096 - m-ou-se:windows-bcrypt-random, r=dtolnay | bors | -27/+14 |
| 2021-10-15 | Use BCryptGenRandom instead of RtlGenRandom on Windows. | Mara Bos | -27/+14 |
| 2021-10-14 | Rollup merge of #89433 - arlosi:stdin-fix, r=joshtriplett | Matthias Krüger | -9/+19 |
| 2021-10-09 | Apply clippy suggestions | Clemens Wasser | -6/+6 |
| 2021-10-06 | Rollup merge of #89324 - yoshuawuyts:hardware-parallelism, r=m-ou-se | Manish Goregaokar | -1/+1 |
| 2021-10-03 | Automatically convert paths to verbatim | Chris Denton | -13/+163 |