From 716f9190df9d04a82a2bd21b27c3e47c83a24c3a Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Sat, 26 Aug 2023 10:59:04 +0100 Subject: [PATCH 1/2] chore: add missing `windows-sys` features back --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 703e84ce31d..0e189a6d4c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -193,10 +193,12 @@ fwdansi.workspace = true workspace = true features = [ "Win32_Foundation", + "Win32_Security", "Win32_Storage_FileSystem", + "Win32_System_IO", "Win32_System_Console", - "Win32_System_Threading", "Win32_System_JobObjects", + "Win32_System_Threading", ] [dev-dependencies] From c46e2c5dc92a65256184863b7fd4eca5af7626c9 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 21 Aug 2023 16:14:31 -0500 Subject: [PATCH 2/2] docs: Remove redundant explicit link CI is currently broken due to a new warning in nightlies --- src/cargo/ops/cargo_compile/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/ops/cargo_compile/mod.rs b/src/cargo/ops/cargo_compile/mod.rs index 9287fdf4fc5..1247ceda700 100644 --- a/src/cargo/ops/cargo_compile/mod.rs +++ b/src/cargo/ops/cargo_compile/mod.rs @@ -5,7 +5,7 @@ //! rough outline is: //! //! 1. Resolve the dependency graph (see [`ops::resolve`]). -//! 2. Download any packages needed (see [`PackageSet`](crate::core::PackageSet)). +//! 2. Download any packages needed (see [`PackageSet`]. //! 3. Generate a list of top-level "units" of work for the targets the user //! requested on the command-line. Each [`Unit`] corresponds to a compiler //! invocation. This is done in this module ([`UnitGenerator::generate_root_units`]).