Skip to content

Commit

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

11 commits in bf5a5d5e5d3ae842a63bfce6d070dfd438cf6070..572e201536dc2e4920346e28037b63c0f4d88b3c
2021-02-18 15:49:14 +0000 to 2021-02-24 16:51:20 +0000
- Pass the error message format to rustdoc (rust-lang/cargo#9128)
- Fix test target_in_environment_contains_lower_case (rust-lang/cargo#9203)
- Fix hang on broken stderr. (rust-lang/cargo#9201)
- Make it more clear which module is being tested when running cargo test (rust-lang/cargo#9195)
- Updates to edition handling. (rust-lang/cargo#9184)
- Add --cfg and --rustc-cfg flags to output compiler configuration (rust-lang/cargo#9002)
- Run rustdoc doctests relative to the workspace (rust-lang/cargo#9105)
- Add support for [env] section in .cargo/config.toml (rust-lang/cargo#9175)
- Add schema field and `features2` to the index. (rust-lang/cargo#9161)
- Document the default location where cargo install emitting build artifacts (rust-lang/cargo#9189)
- Do not exit prematurely if anything failed installing. (rust-lang/cargo#9185)
  • Loading branch information
Dylan-DPC committed Feb 27, 2021
2 parents 2942cf5 + ce80f28 commit a1f7540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 86 files
+2 −0 crates/cargo-test-support/src/lib.rs
+46 −7 crates/cargo-test-support/src/registry.rs
+2 −0 crates/crates-io/lib.rs
+0 −12 src/bin/cargo/commands/fix.rs
+17 −1 src/bin/cargo/commands/rustc.rs
+12 −4 src/cargo/core/compiler/compilation.rs
+11 −0 src/cargo/core/compiler/context/mod.rs
+2 −2 src/cargo/core/compiler/fingerprint.rs
+15 −18 src/cargo/core/compiler/job_queue.rs
+5 −42 src/cargo/core/compiler/mod.rs
+110 −1 src/cargo/core/features.rs
+3 −0 src/cargo/core/summary.rs
+30 −15 src/cargo/core/workspace.rs
+33 −2 src/cargo/ops/cargo_compile.rs
+7 −9 src/cargo/ops/cargo_install.rs
+2 −2 src/cargo/ops/cargo_new.rs
+36 −9 src/cargo/ops/cargo_test.rs
+123 −102 src/cargo/ops/fix.rs
+1 −1 src/cargo/ops/mod.rs
+1 −0 src/cargo/ops/registry.rs
+83 −11 src/cargo/sources/registry/index.rs
+31 −0 src/cargo/sources/registry/mod.rs
+2 −3 src/cargo/util/command_prelude.rs
+57 −0 src/cargo/util/config/mod.rs
+37 −62 src/cargo/util/diagnostic_server.rs
+2 −2 src/cargo/util/mod.rs
+9 −0 src/cargo/util/toml/mod.rs
+39 −0 src/cargo/util/workspace.rs
+32 −12 src/doc/man/cargo-fix.md
+1 −0 src/doc/man/cargo-install.md
+36 −12 src/doc/man/generated_txt/cargo-fix.txt
+5 −1 src/doc/man/generated_txt/cargo-install.txt
+9 −2 src/doc/man/includes/options-target-dir.md
+2 −2 src/doc/src/commands/cargo-bench.md
+2 −2 src/doc/src/commands/cargo-build.md
+2 −2 src/doc/src/commands/cargo-check.md
+2 −2 src/doc/src/commands/cargo-clean.md
+2 −2 src/doc/src/commands/cargo-doc.md
+34 −14 src/doc/src/commands/cargo-fix.md
+7 −2 src/doc/src/commands/cargo-install.md
+2 −2 src/doc/src/commands/cargo-package.md
+2 −2 src/doc/src/commands/cargo-publish.md
+2 −2 src/doc/src/commands/cargo-run.md
+2 −2 src/doc/src/commands/cargo-rustc.md
+2 −2 src/doc/src/commands/cargo-rustdoc.md
+2 −2 src/doc/src/commands/cargo-test.md
+27 −0 src/doc/src/reference/unstable.md
+2 −2 src/etc/man/cargo-bench.1
+2 −2 src/etc/man/cargo-build.1
+2 −2 src/etc/man/cargo-check.1
+2 −2 src/etc/man/cargo-clean.1
+2 −2 src/etc/man/cargo-doc.1
+36 −14 src/etc/man/cargo-fix.1
+7 −2 src/etc/man/cargo-install.1
+2 −2 src/etc/man/cargo-package.1
+2 −2 src/etc/man/cargo-publish.1
+2 −2 src/etc/man/cargo-run.1
+2 −2 src/etc/man/cargo-rustc.1
+2 −2 src/etc/man/cargo-rustdoc.1
+2 −2 src/etc/man/cargo-test.1
+36 −36 tests/testsuite/bench.rs
+82 −2 tests/testsuite/build.rs
+1 −1 tests/testsuite/build_script.rs
+133 −0 tests/testsuite/cargo_env_config.rs
+7 −7 tests/testsuite/cross_compile.rs
+76 −0 tests/testsuite/doc.rs
+93 −1 tests/testsuite/edition.rs
+74 −0 tests/testsuite/features2.rs
+102 −0 tests/testsuite/features_namespaced.rs
+201 −68 tests/testsuite/fix.rs
+3 −3 tests/testsuite/freshness.rs
+1 −1 tests/testsuite/git.rs
+4 −0 tests/testsuite/glob_targets.rs
+61 −0 tests/testsuite/install.rs
+1 −1 tests/testsuite/lto.rs
+2 −0 tests/testsuite/main.rs
+28 −1 tests/testsuite/message_format.rs
+586 −0 tests/testsuite/old_cargos.rs
+2 −2 tests/testsuite/path.rs
+30 −0 tests/testsuite/registry.rs
+1 −1 tests/testsuite/rename_deps.rs
+18 −18 tests/testsuite/required_features.rs
+101 −0 tests/testsuite/rustc.rs
+55 −52 tests/testsuite/test.rs
+21 −18 tests/testsuite/tool_paths.rs
+100 −1 tests/testsuite/weak_dep_features.rs

0 comments on commit a1f7540

Please sign in to comment.