forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#88127 - ehuss:update-cargo, r=ehuss
Update cargo 8 commits in b51439fd8b505d4800a257acfecf3c69f81e35cf..e96bdb0c3d0a418e7fcd7fbd69be08abf830b4bc 2021-08-09 18:40:05 +0000 to 2021-08-17 22:58:47 +0000 - Support using rustbot to ping the Windows group (rust-lang/cargo#9802) - Show information about abnormal `fix` errors. (rust-lang/cargo#9799) - Bump jobserver. (rust-lang/cargo#9798) - Render build-std web links as hyperlinks (rust-lang/cargo#9795) - Teach cargo to failfast on recursive/corecursive aliases (rust-lang/cargo#9791) - Fix value-after-table error with profiles. (rust-lang/cargo#9789) - Fix plugin registrar change. (rust-lang/cargo#9790) - Ability to specify the output name for a bin target different from the crate name (rust-lang/cargo#9627)
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
24 files
+1 −1 | Cargo.toml | |
+20 −1 | crates/cargo-test-support/src/tools.rs | |
+18 −2 | src/bin/cargo/cli.rs | |
+11 −4 | src/cargo/core/compiler/build_context/target_info.rs | |
+6 −1 | src/cargo/core/compiler/compilation.rs | |
+3 −0 | src/cargo/core/compiler/context/compilation_files.rs | |
+4 −1 | src/cargo/core/compiler/mod.rs | |
+3 −0 | src/cargo/core/features.rs | |
+13 −1 | src/cargo/core/manifest.rs | |
+16 −3 | src/cargo/ops/fix.rs | |
+9 −0 | src/cargo/util/diagnostic_server.rs | |
+6 −2 | src/cargo/util/toml/mod.rs | |
+15 −2 | src/cargo/util/toml/targets.rs | |
+31 −4 | src/doc/src/reference/unstable.md | |
+291 −0 | tests/testsuite/binary_name.rs | |
+82 −1 | tests/testsuite/cargo_alias_config.rs | |
+8 −21 | tests/testsuite/cargo_command.rs | |
+36 −1 | tests/testsuite/config.rs | |
+3 −3 | tests/testsuite/cross_compile.rs | |
+80 −1 | tests/testsuite/fix.rs | |
+1 −0 | tests/testsuite/main.rs | |
+6 −6 | tests/testsuite/plugins.rs | |
+3 −3 | tests/testsuite/proc_macro.rs | |
+11 −0 | triagebot.toml |