-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #71642 - ehuss:update-cargo, r=ehuss
Update cargo 11 commits in 8751eb3010d4cdb5329b5a6bd2b6d765c95b0dca..90931d9b31e8b854522fed00916504a3ac6d8619 2020-04-21 18:04:35 +0000 to 2020-04-28 01:56:59 +0000 - Use associated constants directly on primitive types instead of modules (rust-lang/cargo#8077) - Clear `RUSTDOCFLAGS` before running tests (rust-lang/cargo#8168) - Fix warning for `resolve` mismatch in workspace. (rust-lang/cargo#8169) - Fix flaky linking_interrupted test. (rust-lang/cargo#8162) - Fixed some unnecessary borrows and clones. (rust-lang/cargo#8146) - Added warning when using restricted names in Windows. (rust-lang/cargo#8136) - Add changelog about dylib uplift. (rust-lang/cargo#8161) - Mention that cargo_metadata can parse json messages (rust-lang/cargo#8158) - Re-enable rustc-info-cache test again (rust-lang/cargo#8155) - Updates to path source walking. (rust-lang/cargo#8095) - Bump to 0.46.0, update changelog (rust-lang/cargo#8153)
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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
26 files
+111 −2 | CHANGELOG.md | |
+3 −3 | Cargo.toml | |
+1 −1 | crates/cargo-test-support/src/lib.rs | |
+1 −1 | crates/resolver-tests/tests/resolve.rs | |
+1 −1 | src/cargo/core/compiler/context/compilation_files.rs | |
+18 −2 | src/cargo/core/compiler/fingerprint.rs | |
+4 −4 | src/cargo/core/manifest.rs | |
+1 −1 | src/cargo/core/resolver/conflict_cache.rs | |
+3 −1 | src/cargo/core/workspace.rs | |
+3 −3 | src/cargo/ops/cargo_compile.rs | |
+5 −18 | src/cargo/ops/cargo_package.rs | |
+1 −1 | src/cargo/ops/registry.rs | |
+2 −2 | src/cargo/ops/resolve.rs | |
+84 −63 | src/cargo/sources/path.rs | |
+13 −6 | src/cargo/sources/registry/mod.rs | |
+11 −0 | src/cargo/util/restricted_names.rs | |
+4 −0 | src/doc/src/reference/external-tools.md | |
+36 −2 | tests/testsuite/build_script.rs | |
+2 −46 | tests/testsuite/death.rs | |
+11 −0 | tests/testsuite/features2.rs | |
+52 −11 | tests/testsuite/freshness.rs | |
+106 −1 | tests/testsuite/package.rs | |
+1 −0 | tests/testsuite/publish_lockfile.rs | |
+3 −3 | tests/testsuite/rustc_info_cache.rs | |
+1 −1 | tests/testsuite/standard_lib.rs | |
+1 −1 | tests/testsuite/test.rs |