Skip to content

Commit

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

11 commits in e02974078a692d7484f510eaec0e88d1b6cc0203..e57bd02999c9f40d52116e0beca7d1dccb0643de
2020-02-18 15:24:43 +0000 to 2020-02-21 20:20:10 +0000
- fix most remaining clippy findings (mostly redundant imports) (rust-lang/cargo#7912)
- Add -Zfeatures tracking issues. (rust-lang/cargo#7917)
- Use rust-lang/rust linkchecker on CI. (rust-lang/cargo#7913)
- Clean up code mostly based on clippy suggestions (rust-lang/cargo#7911)
- Add an option to include crate versions to the generated docs (rust-lang/cargo#7903)
- Better support for license-file. (rust-lang/cargo#7905)
- Add new feature resolver. (rust-lang/cargo#7820)
- Switch azure to macOS 10.15. (rust-lang/cargo#7906)
- Modified the help information of cargo-rustc (rust-lang/cargo#7892)
- Update for nightly rustfmt. (rust-lang/cargo#7904)
- Support `--config path_to_config.toml` cli syntax. (rust-lang/cargo#7901)
  • Loading branch information
bors committed Feb 22, 2020
2 parents 3eeefc2 + 11530de commit 436494b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 85 files
+2 −4 CONTRIBUTING.md
+12 −4 azure-pipelines.yml
+0 −11 ci/azure-install-rust.yml
+8 −10 crates/cargo-platform/src/lib.rs
+143 −65 crates/cargo-test-support/src/cross_compile.rs
+0 −1 crates/cargo-test-support/src/git.rs
+4 −2 crates/cargo-test-support/src/lib.rs
+0 −1 crates/crates-io/lib.rs
+3 −5 src/bin/cargo/cli.rs
+2 −2 src/bin/cargo/commands/rustc.rs
+19 −86 src/cargo/core/compiler/build_context/mod.rs
+95 −7 src/cargo/core/compiler/build_context/target_info.rs
+14 −6 src/cargo/core/compiler/compilation.rs
+0 −10 src/cargo/core/compiler/compile_kind.rs
+13 −13 src/cargo/core/compiler/context/compilation_files.rs
+1 −1 src/cargo/core/compiler/context/mod.rs
+4 −4 src/cargo/core/compiler/custom_build.rs
+2 −2 src/cargo/core/compiler/fingerprint.rs
+17 −1 src/cargo/core/compiler/mod.rs
+22 −6 src/cargo/core/compiler/standard_lib.rs
+5 −3 src/cargo/core/compiler/timings.rs
+3 −3 src/cargo/core/compiler/unit.rs
+85 −16 src/cargo/core/compiler/unit_dependencies.rs
+11 −0 src/cargo/core/features.rs
+4 −1 src/cargo/core/package.rs
+0 −1 src/cargo/core/package_id.rs
+111 −18 src/cargo/core/profiles.rs
+5 −4 src/cargo/core/resolver/context.rs
+3 −3 src/cargo/core/resolver/dep_cache.rs
+1 −0 src/cargo/core/resolver/encode.rs
+0 −1 src/cargo/core/resolver/errors.rs
+534 −0 src/cargo/core/resolver/features.rs
+26 −14 src/cargo/core/resolver/mod.rs
+26 −22 src/cargo/core/resolver/resolve.rs
+13 −29 src/cargo/core/resolver/types.rs
+1 −5 src/cargo/core/shell.rs
+81 −0 src/cargo/core/workspace.rs
+26 −4 src/cargo/ops/cargo_clean.rs
+68 −17 src/cargo/ops/cargo_compile.rs
+12 −2 src/cargo/ops/cargo_doc.rs
+3 −3 src/cargo/ops/cargo_generate_lockfile.rs
+15 −3 src/cargo/ops/cargo_install.rs
+0 −2 src/cargo/ops/cargo_new.rs
+49 −42 src/cargo/ops/cargo_output_metadata.rs
+219 −186 src/cargo/ops/cargo_package.rs
+0 −2 src/cargo/ops/lockfile.rs
+38 −88 src/cargo/ops/resolve.rs
+6 −4 src/cargo/util/config/de.rs
+30 −15 src/cargo/util/config/mod.rs
+0 −2 src/cargo/util/flock.rs
+0 −2 src/cargo/util/graph.rs
+0 −1 src/cargo/util/hex.rs
+0 −1 src/cargo/util/job.rs
+0 −3 src/cargo/util/network.rs
+11 −0 src/cargo/util/paths.rs
+0 −1 src/cargo/util/read2.rs
+1 −2 src/cargo/util/sha256.rs
+22 −2 src/cargo/util/toml/mod.rs
+0 −1 src/cargo/util/vcs.rs
+82 −2 src/doc/src/reference/unstable.md
+2 −0 tests/testsuite/build_script.rs
+0 −1 tests/testsuite/cargo_command.rs
+0 −1 tests/testsuite/concurrent.rs
+27 −1 tests/testsuite/config_include.rs
+39 −11 tests/testsuite/cross_compile.rs
+33 −0 tests/testsuite/doc.rs
+50 −0 tests/testsuite/features.rs
+895 −0 tests/testsuite/features2.rs
+1 −1 tests/testsuite/git.rs
+0 −1 tests/testsuite/git_auth.rs
+0 −1 tests/testsuite/git_gc.rs
+0 −1 tests/testsuite/init.rs
+0 −2 tests/testsuite/install.rs
+0 −1 tests/testsuite/login.rs
+1 −0 tests/testsuite/main.rs
+1 −1 tests/testsuite/metabuild.rs
+8 −6 tests/testsuite/metadata.rs
+2 −5 tests/testsuite/owner.rs
+236 −18 tests/testsuite/package.rs
+0 −1 tests/testsuite/patch.rs
+1 −1 tests/testsuite/profile_config.rs
+16 −10 tests/testsuite/publish_lockfile.rs
+2 −5 tests/testsuite/registry.rs
+29 −22 tests/testsuite/test.rs
+0 −1 tests/testsuite/version.rs

0 comments on commit 436494b

Please sign in to comment.