forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#91144 - ehuss:update-cargo, r=ehuss
Update cargo 7 commits in ad50d0d266213e0cc4f6e526a39d96faae9a3842..e1fb17631eb1b3665cdbe45b1c186111577ef512 2021-11-17 18:36:37 +0000 to 2021-11-22 16:53:06 +0000 - re-enable lto_build test on 32-bit MSVC (rust-lang/cargo#10110) - Fix a couple issues with cyclic features and dev-dependencies (rust-lang/cargo#10103) - Add --message-format for install command (rust-lang/cargo#10107) - Update curl dependency, remove M1 macOS build error note (rust-lang/cargo#10106) - Make clippy happy (rust-lang/cargo#10105) - Give a hard error if `-Zrustdoc-scrape-examples` is missing a flag (rust-lang/cargo#10043) - silly fix, pointer to the empty slice (rust-lang/cargo#10097)
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cargo
updated
16 files
+1 −1 | Cargo.toml | |
+1 −0 | src/bin/cargo/commands/install.rs | |
+9 −1 | src/cargo/core/features.rs | |
+6 −4 | src/cargo/core/resolver/dep_cache.rs | |
+2 −7 | src/cargo/core/resolver/resolve.rs | |
+36 −26 | src/cargo/ops/tree/graph.rs | |
+0 −5 | src/doc/contrib/src/process/working-on-cargo.md | |
+3 −0 | src/doc/man/cargo-install.md | |
+28 −0 | src/doc/man/generated_txt/cargo-install.txt | |
+25 −0 | src/doc/src/commands/cargo-install.md | |
+40 −0 | src/etc/man/cargo-install.1 | |
+0 −5 | tests/testsuite/build.rs | |
+1 −1 | tests/testsuite/config.rs | |
+25 −0 | tests/testsuite/doc.rs | |
+77 −0 | tests/testsuite/install.rs | |
+216 −0 | tests/testsuite/tree.rs |