about summary refs log tree commit diff
path: root/library/std/src/sys/pal/windows/args.rs
AgeCommit message (Collapse)AuthorLines
2025-04-12Move args into std::sysThalia Archibald-445/+0
2025-03-22std: move process implementations to `sys`joboet-1/+1
As per #117276, this moves the implementations of `Process` and friends out of the `pal` module and into the `sys` module, removing quite a lot of error-prone `#[path]` imports in the process (hah, get it ;-)). I've also made the `zircon` module a dedicated submodule of `pal::unix`, hopefully we can move some other definitions there as well (they are currently quite a lot of duplications in `sys`). Also, the `ensure_no_nuls` function on Windows now lives in `sys::pal::windows` – it's not specific to processes and shared by the argument implementation.
2024-11-26std: update internal uses of `io::const_error!`joboet-2/+2
2024-10-14Fix two const-hacksGeorge Bateman-15/+4
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-1/+1
2024-09-08add FIXME(const-hack)Ralf Jung-1/+1
2024-07-29Reformat `use` declarations.Nicholas Nethercote-5/+1
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-04-09Disallow or quote all specials in bat argsChris Denton-12/+93
2024-02-15Replace `NonZero::<_>::new` with `NonZero::new`.Markus Reiter-2/+2
2024-02-15Use generic `NonZero` internally.Markus Reiter-8/+8
2024-01-11std: fix module references on Windowsjoboet-2/+2
2024-01-11std: begin moving platform support modules into `pal`joboet-0/+379