| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-24 | std: add support for armv7a-vex-v5 target | Tropical | -0/+4 | |
| Co-authored-by: Lewis McClelland <lewis@lewismcclelland.me> | ||||
| 2025-08-23 | Fix STD build failing for target_os = espidf | ivmarkov | -2/+11 | |
| 2025-08-19 | Rollup merge of #142938 - lolbinarycat:std-set_permissions_nofollow, ↵ | 许杰友 Jieyou Xu (Joe) | -0/+15 | |
| r=ibraheemdev implement std::fs::set_permissions_nofollow on unix implementation of https://github.com/rust-lang/rust/issues/141607 | ||||
| 2025-08-18 | implement std::fs::set_permissions_nofollow on unix | binarycat | -0/+15 | |
| 2025-08-16 | library: Migrate from `cfg_if` to `cfg_select` | Josh Triplett | -8/+14 | |
| Migrate the standard library from using the external `cfg_if` crate to using the now-built-in `cfg_select` macro. This does not yet eliminate the dependency from `library/std/Cargo.toml`, because while the standard library itself no longer uses `cfg_if`, it also incorporates the `backtrace` crate, which does. Migration assisted by the following vim command (after selecting the full `cfg_if!` invocation): ``` '<,'>s/\(cfg_if::\)\?cfg_if/cfg_select/ | '<,'>s/^\( *\)} else {/\1}\r\1_ => {/c | '<,'>s/^\( *\)} else if #\[cfg(\(.*\))\] /\1}\r\1\2 => /e | '<,'>s/if #\[cfg(\(.*\))\] {/\1 => {/e ``` This is imperfect, but substantially accelerated the process. This prompts for confirmation on the `} else {` since that can also appear inside one of the arms. This also requires manual intervention to handle any multi-line conditions. | ||||
| 2025-04-24 | Rollup merge of #139450 - NobodyXu:new-api/make-fifo, r=tgross35 | Matthias Krüger | -1/+1 | |
| Impl new API `std::os::unix::fs::mkfifo` under feature `unix_fifo` Tracking issue #139324 | ||||
| 2025-04-23 | Impl new API `std::os::unix::fs::mkfifo` under feature `unix_fifo` | Jiahao XU | -1/+1 | |
| Tracking issue #139324 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> | ||||
| 2025-04-11 | Use with_native_path for Windows | Chris Denton | -8/+22 | |
| Also add a WCStr type | ||||
| 2025-03-29 | Start using with_native_path in std::sys::fs | Chris Denton | -7/+94 | |
| 2025-03-08 | Move fs into sys | Thalia Archibald | -0/+28 | |
