forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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#87928 - ehuss:update-cargo, r=ehuss
Update cargo 9 commits in cc17afbb0067b1f57d8882640f63b2168d5b7624..b51439fd8b505d4800a257acfecf3c69f81e35cf 2021-08-02 20:28:08 +0000 to 2021-08-09 18:40:05 +0000 - Deduplicate entries in cargo --list (rust-lang/cargo#9773) - Include aliases with other commands (rust-lang/cargo#9764) - Add a profile option to select the codegen backend (rust-lang/cargo#9118) - remove useless conversions (rust-lang/cargo#9617) - collapse nested if blocks (rust-lang/cargo#9613) - Refactor fake_file() away from cargo_command tests (rust-lang/cargo#9767) - Update cargo-platform to 0.1.2 (rust-lang/cargo#9762) - Bump to the latest jobserver dependency (rust-lang/cargo#9760) - Fix semver check for rust 1.54.0 (rust-lang/cargo#9763)
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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
21 files
+2 −2 | Cargo.toml | |
+1 −1 | crates/cargo-platform/Cargo.toml | |
+45 −11 | crates/cargo-test-support/src/lib.rs | |
+6 −3 | src/bin/cargo/cli.rs | |
+35 −31 | src/bin/cargo/main.rs | |
+6 −6 | src/cargo/core/compiler/context/mod.rs | |
+5 −0 | src/cargo/core/compiler/mod.rs | |
+1 −1 | src/cargo/core/compiler/output_depinfo.rs | |
+3 −0 | src/cargo/core/features.rs | |
+8 −0 | src/cargo/core/profiles.rs | |
+5 −7 | src/cargo/ops/cargo_config.rs | |
+11 −13 | src/cargo/ops/cargo_install.rs | |
+7 −9 | src/cargo/sources/registry/index.rs | |
+6 −13 | src/cargo/util/command_prelude.rs | |
+5 −7 | src/cargo/util/config/target.rs | |
+32 −4 | src/cargo/util/toml/mod.rs | |
+1 −1 | src/doc/src/reference/pkgid-spec.md | |
+1 −1 | src/doc/src/reference/semver.md | |
+18 −0 | src/doc/src/reference/unstable.md | |
+47 −69 | tests/testsuite/cargo_command.rs | |
+124 −118 | tests/testsuite/unit_graph.rs |