Skip to content

Commit

Permalink
Auto merge of rust-lang#74685 - ehuss:update-cargo, r=ehuss
Browse files Browse the repository at this point in the history
Update cargo

21 commits in 43cf77395cad5b79887b20b7cf19d418bbd703a9..aa6872140ab0fa10f641ab0b981d5330d419e927
2020-07-13 17:35:42 +0000 to 2020-07-23 13:46:27 +0000
- Update features set in CI. (rust-lang/cargo#8530)
- Stabilize -Z crate-versions (rust-lang/cargo#8509)
- Fix typo in docs (rust-lang/cargo#8529)
- Remove unused CompileMode::all_modes (rust-lang/cargo#8526)
- Mask out system core.autocrlf settings before resetting git repos (rust-lang/cargo#8523)
- Flag git zlib errors as spurious errors (rust-lang/cargo#8520)
- Fix the help display for the target-triple option (rust-lang/cargo#8515)
- Check workspace member existence as dir. (rust-lang/cargo#8511)
- Bump to 0.48.0, update changelog (rust-lang/cargo#8508)
- Apply workspace.exclude to workspace.default-members. (rust-lang/cargo#8485)
- Fix nightly tests for intra-doc links. (rust-lang/cargo#8528)
- doc: Replace "regenerate" with "revoke" for API tokens (rust-lang/cargo#8510)
- Add back Manifest::targets_mut (rust-lang/cargo#8494)
- Build host dependencies with opt-level 0 by default (rust-lang/cargo#8500)
- Fix freshness checks for build scripts on renamed dirs (rust-lang/cargo#8497)
- Add a `-Zbuild-std-features` flag (rust-lang/cargo#8490)
- clippy cleanups (rust-lang/cargo#8495)
- Fix self-publish script. (rust-lang/cargo#8492)
- Ensure `unstable.build-std` works like `-Zbuild-std` (rust-lang/cargo#8491)
- Make `cargo metadata` output deterministic (rust-lang/cargo#8489)
- Switch to github actions (rust-lang/cargo#8467)
  • Loading branch information
bors committed Jul 23, 2020
2 parents 39a295f + 76103f1 commit 0820e54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ checksum = "716960a18f978640f25101b5cbf1c6f6b0d3192fab36a2d98ca96f0ecbe41010"

[[package]]
name = "cargo"
version = "0.47.0"
version = "0.48.0"
dependencies = [
"anyhow",
"atty",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 47 files
+117 −0 .github/workflows/main.yml
+105 −2 CHANGELOG.md
+1 −1 Cargo.toml
+0 −118 azure-pipelines.yml
+0 −18 ci/azure-install-rust.yml
+0 −33 ci/azure-test-all.yml
+19 −34 crates/cargo-test-support/src/lib.rs
+10 −6 publish.py
+0 −1 src/bin/cargo/cli.rs
+0 −17 src/cargo/core/compiler/build_config.rs
+0 −10 src/cargo/core/compiler/build_context/target_info.rs
+5 −34 src/cargo/core/compiler/mod.rs
+9 −2 src/cargo/core/compiler/standard_lib.rs
+17 −2 src/cargo/core/features.rs
+4 −0 src/cargo/core/manifest.rs
+12 −1 src/cargo/core/profiles.rs
+25 −8 src/cargo/core/workspace.rs
+2 −2 src/cargo/lib.rs
+10 −8 src/cargo/ops/cargo_output_metadata.rs
+1 −1 src/cargo/sources/git/source.rs
+10 −4 src/cargo/sources/git/utils.rs
+4 −0 src/cargo/sources/path.rs
+2 −2 src/cargo/sources/registry/remote.rs
+1 −1 src/cargo/util/command_prelude.rs
+1 −1 src/cargo/util/network.rs
+1 −1 src/cargo/util/paths.rs
+2 −2 src/doc/src/reference/publishing.md
+9 −7 src/doc/src/reference/unstable.md
+69 −69 tests/testsuite/alt_registry.rs
+1 −1 tests/testsuite/dep_info.rs
+12 −21 tests/testsuite/doc.rs
+18 −8 tests/testsuite/freshness.rs
+5 −44 tests/testsuite/lto.rs
+1 −0 tests/testsuite/main.rs
+44 −0 tests/testsuite/member_discovery.rs
+134 −134 tests/testsuite/metadata.rs
+3 −0 tests/testsuite/mock-std/src/libstd/Cargo.toml
+5 −2 tests/testsuite/mock-std/src/libstd/lib.rs
+3 −0 tests/testsuite/mock-std/src/libtest/Cargo.toml
+1 −1 tests/testsuite/profile_config.rs
+38 −29 tests/testsuite/profile_targets.rs
+0 −6 tests/testsuite/rustc_info_cache.rs
+18 −13 tests/testsuite/rustdoc.rs
+60 −9 tests/testsuite/standard_lib.rs
+29 −29 tests/testsuite/update.rs
+45 −1 tests/testsuite/vendor.rs
+90 −0 tests/testsuite/workspaces.rs

0 comments on commit 0820e54

Please sign in to comment.