forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
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#76174 - ehuss:update-cargo, r=ehuss
Update cargo 8 commits in 51b66125ba97d2906f461b3f4e0408f206299bb6..126907a7cfccbe93778530e6a6bbaa3adb6c515c 2020-08-19 20:22:52 +0000 to 2020-08-31 20:42:11 +0000 - Fix flakiness in close_output test (rust-lang/cargo#8668) - Reload unstable table from config file in `reload_rooted_at` (rust-lang/cargo#8656) - Bump to 0.49.0, update changelog (rust-lang/cargo#8659) - Fix LTO with doctests. (rust-lang/cargo#8657) - Add spaces after -C and -Z flags for consistency (rust-lang/cargo#8648) - Fix cache_messages::rustdoc test broken on beta. (rust-lang/cargo#8653) - fix: remove unnecessary allocations (rust-lang/cargo#8641) - Fixed a spelling and some clippy warnings (rust-lang/cargo#8637)
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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
+78 −2 | CHANGELOG.md | |
+1 −1 | Cargo.toml | |
+40 −38 | crates/cargo-test-support/src/lib.rs | |
+1 −1 | src/bin/cargo/commands/help.rs | |
+3 −3 | src/bin/cargo/commands/run.rs | |
+2 −1 | src/cargo/core/compiler/context/mod.rs | |
+23 −24 | src/cargo/core/compiler/mod.rs | |
+2 −5 | src/cargo/core/profiles.rs | |
+3 −17 | src/cargo/ops/lockfile.rs | |
+1 −1 | src/cargo/ops/registry.rs | |
+25 −8 | src/cargo/util/config/mod.rs | |
+9 −16 | tests/testsuite/build.rs | |
+3 −7 | tests/testsuite/cache_messages.rs | |
+0 −8 | tests/testsuite/freshness.rs | |
+19 −0 | tests/testsuite/install.rs | |
+94 −35 | tests/testsuite/lto.rs |