Skip to content

Rollup of 7 pull requests #95653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Apr 4, 2022
Merged
Changes from 3 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c821b71
stabilize windows_process_extensions_raw_arg
Xaeroxe Jan 15, 2022
02dbf24
Release notes for 1.60.0
cuviper Mar 10, 2022
1a49636
Mention 92800 for docs availability
cuviper Mar 11, 2022
7382f22
Fix cargo relnotes using its 1.60.0 milestone
cuviper Mar 11, 2022
d47fba7
Drop unstable features from relnotes
cuviper Mar 11, 2022
fc3d57c
Drop unstable compat notes from relnotes
cuviper Mar 21, 2022
f1fa84c
Add test for proc_macro Literal string and character constructors
dtolnay Mar 26, 2022
f383134
Use str and char's Debug impl to format literals
dtolnay Mar 26, 2022
750ab03
Add SyncUnsafeCell.
m-ou-se Mar 29, 2022
f225808
Add tracking issue for sync_unsafe_cell.
m-ou-se Mar 29, 2022
5475047
Synchronize asynchronous pipe reads and writes
ChrisDenton Mar 30, 2022
7d7715f
Suggest borrowing when trying to coerce unsized type into dyn Trait
compiler-errors Apr 2, 2022
62f37da
Update library/std/src/sys/windows/pipe.rs
ChrisDenton Apr 4, 2022
b81d430
link target tier policy to new targets
pietroalbini Apr 4, 2022
e393ed7
move 2021 libs to internal changes
pietroalbini Apr 4, 2022
91beb32
reword the docs on tier 2 platforms docs
pietroalbini Apr 4, 2022
9c0de7b
add future compatibility notes for linux-gnu baseline bump
pietroalbini Apr 4, 2022
af8b6b6
add compat note about instant changes
pietroalbini Apr 4, 2022
82eedae
improve 92630 wording
pietroalbini Apr 4, 2022
1b9cd5b
Stabilize total_cmp
golddranks Mar 29, 2022
66e05c2
Bump windows CommandExt::raw_arg to 1.62
dtolnay Apr 4, 2022
cbbcd87
Correct calling convention
ChrisDenton Apr 4, 2022
c56cbf9
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
Dylan-DPC Apr 4, 2022
9816892
Rollup merge of #94817 - cuviper:relnotes-1.60.0, r=pietroalbini,m-ou-se
Dylan-DPC Apr 4, 2022
2d1496a
Rollup merge of #95343 - dtolnay:literals, r=petrochenkov
Dylan-DPC Apr 4, 2022
73148ee
Rollup merge of #95431 - golddranks:stabilize_total_cmp, r=scottmcm
Dylan-DPC Apr 4, 2022
4d7d9d4
Rollup merge of #95438 - m-ou-se:sync-unsafe-cell, r=joshtriplett
Dylan-DPC Apr 4, 2022
4cbc003
Rollup merge of #95467 - ChrisDenton:async-read-pipe, r=joshtriplett
Dylan-DPC Apr 4, 2022
0c5f879
Rollup merge of #95609 - compiler-errors:borrow-unsized-to-dyn, r=nagisa
Dylan-DPC Apr 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/std/src/os/windows/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#[unstable(feature = "windows_process_extensions_raw_arg", issue = "29494")]
#[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;
}

Expand Down