Skip to content

Commit 9c4383f

Browse files
committed
Auto merge of #12564 - weihanglo:rust-1.73.0-backport, r=ehuss
[beta-1.73.0] add missing `windows-sys` features back Fixes <#12562> Beta backports: - <#12563> In order to make CI pass, the following PRs are also cherry-picked: - c508cb6 from #12538
2 parents 80eca0e + c46e2c5 commit 9c4383f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,12 @@ fwdansi.workspace = true
193193
workspace = true
194194
features = [
195195
"Win32_Foundation",
196+
"Win32_Security",
196197
"Win32_Storage_FileSystem",
198+
"Win32_System_IO",
197199
"Win32_System_Console",
198-
"Win32_System_Threading",
199200
"Win32_System_JobObjects",
201+
"Win32_System_Threading",
200202
]
201203

202204
[dev-dependencies]

src/cargo/ops/cargo_compile/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! rough outline is:
66
//!
77
//! 1. Resolve the dependency graph (see [`ops::resolve`]).
8-
//! 2. Download any packages needed (see [`PackageSet`](crate::core::PackageSet)).
8+
//! 2. Download any packages needed (see [`PackageSet`].
99
//! 3. Generate a list of top-level "units" of work for the targets the user
1010
//! requested on the command-line. Each [`Unit`] corresponds to a compiler
1111
//! invocation. This is done in this module ([`UnitGenerator::generate_root_units`]).

0 commit comments

Comments
 (0)