diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-09-05 17:02:12 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-09-05 17:02:12 +0200 |
| commit | 8c93cdc8e0ad3c443755a88af3c0367894614178 (patch) | |
| tree | eceb6f84b519f54b79ea519f328ff92c97a4b5f2 /src | |
| parent | 4375e9d313aa3b236c8537e7ceeb89f6415fc05a (diff) | |
| download | rust-8c93cdc8e0ad3c443755a88af3c0367894614178.tar.gz rust-8c93cdc8e0ad3c443755a88af3c0367894614178.zip | |
Add a comment about the "specialization" feature required because of `im-rc`
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/doc.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/doc.rs b/src/bootstrap/src/core/build_steps/doc.rs index a1a16980be6..295d8b55eff 100644 --- a/src/bootstrap/src/core/build_steps/doc.rs +++ b/src/bootstrap/src/core/build_steps/doc.rs @@ -1146,6 +1146,8 @@ tool_doc!( "mdman", "rustfix", ], + // Required because of the im-rc dependency of Cargo, which automatically opts into the + // "specialization" feature in its build script when it detects a nightly toolchain. allow_features: "specialization" ); tool_doc!(Tidy, "src/tools/tidy", mode = Mode::ToolBootstrap, crates = ["tidy"]); |
