1
Fork 0

Bump windows CommandExt::raw_arg to 1.62

This commit is contained in:
David Tolnay 2022-04-04 10:15:28 -07:00
parent c821b71632
commit 66e05c2f7c
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -159,7 +159,7 @@ pub trait CommandExt: Sealed {
///
/// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow
/// `CommandLineToArgvW` escaping rules.
#[stable(feature = "windows_process_extensions_raw_arg", since = "1.61.0")]
#[stable(feature = "windows_process_extensions_raw_arg", since = "1.62.0")]
fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command;
}