-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 #62548 - ehuss:update-cargo, r=alexcrichton
Update cargo Update cargo 12 commits in 4c1fa54d10f58d69ac9ff55be68e1b1c25ecb816..677a180f4c8ca1dcef594f68dd0e63e4f08621f5 2019-06-24 11:24:18 +0000 to 2019-07-08 13:43:02 +0000 - Update dependencies (rust-lang/cargo#7106) - Fix overwriting .d file for binary with dSYM on apple targets. (rust-lang/cargo#7057) - Update changelog. (rust-lang/cargo#7102) - Revert "Fix 'getting started' internal links" (rust-lang/cargo#7099) - Bump to 0.39.0 (rust-lang/cargo#7100) - Update dependency.rs (rust-lang/cargo#7098) - Typo (rust-lang/cargo#7097) - Fix 'getting started' internal links (rust-lang/cargo#7093) - Fix misleading comment in testsuite (rust-lang/cargo#7090) - improve uncommitted changes cargo-package message (rust-lang/cargo#7083) - Clean environment when git-fetch-with-cli is used. (rust-lang/cargo#7082) - Fix exponentiality in depend_on_deps_of_deps. (rust-lang/cargo#7062)
- Loading branch information
Showing
2 changed files
with
5 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
15 files
+66 −2 | CHANGELOG.md | |
+2 −3 | Cargo.toml | |
+1 −1 | crates/crates-io/Cargo.toml | |
+8 −9 | src/cargo/core/compiler/job_queue.rs | |
+6 −2 | src/cargo/core/compiler/output_depinfo.rs | |
+1 −1 | src/cargo/core/dependency.rs | |
+1 −1 | src/cargo/ops/cargo_package.rs | |
+11 −0 | src/cargo/sources/git/utils.rs | |
+1 −1 | src/cargo/util/config.rs | |
+61 −0 | tests/testsuite/build.rs | |
+7 −0 | tests/testsuite/dep_info.rs | |
+49 −0 | tests/testsuite/git.rs | |
+1 −1 | tests/testsuite/package.rs | |
+1 −1 | tests/testsuite/publish.rs | |
+12 −4 | tests/testsuite/support/publish.rs |