This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit a1f7540
authored
Rollup merge of rust-lang#82490 - ehuss:update-cargo, r=ehuss
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)1 file changed
+1
-1
lines changed- crates/cargo-test-support/src/lib.rs+2
- crates/cargo-test-support/src/registry.rs+46-7
- crates/crates-io/lib.rs+2
- src/bin/cargo/commands/fix.rs-12
- src/bin/cargo/commands/rustc.rs+17-1
- src/cargo/core/compiler/compilation.rs+12-4
- src/cargo/core/compiler/context/mod.rs+11
- src/cargo/core/compiler/fingerprint.rs+2-2
- src/cargo/core/compiler/job_queue.rs+15-18
- src/cargo/core/compiler/mod.rs+5-42
- src/cargo/core/features.rs+110-1
- src/cargo/core/summary.rs+3
- src/cargo/core/workspace.rs+30-15
- src/cargo/ops/cargo_compile.rs+33-2
- src/cargo/ops/cargo_install.rs+7-9
- src/cargo/ops/cargo_new.rs+2-2
- src/cargo/ops/cargo_test.rs+36-9
- src/cargo/ops/fix.rs+123-102
- src/cargo/ops/mod.rs+1-1
- src/cargo/ops/registry.rs+1
- src/cargo/sources/registry/index.rs+83-11
- src/cargo/sources/registry/mod.rs+31
- src/cargo/util/command_prelude.rs+2-3
- src/cargo/util/config/mod.rs+57
- src/cargo/util/diagnostic_server.rs+37-62
- src/cargo/util/mod.rs+2-2
- src/cargo/util/toml/mod.rs+9
- src/cargo/util/workspace.rs+39
- src/doc/man/cargo-fix.md+32-12
- src/doc/man/cargo-install.md+1
- src/doc/man/generated_txt/cargo-fix.txt+36-12
- src/doc/man/generated_txt/cargo-install.txt+5-1
- src/doc/man/includes/options-target-dir.md+9-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+2-2
- src/doc/src/commands/cargo-fix.md+34-14
- src/doc/src/commands/cargo-install.md+7-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+2-2
- src/doc/src/reference/unstable.md+27
- 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+2-2
- src/etc/man/cargo-fix.1+36-14
- src/etc/man/cargo-install.1+7-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+2-2
- tests/testsuite/bench.rs+36-36
- tests/testsuite/build.rs+82-2
- tests/testsuite/build_script.rs+1-1
- tests/testsuite/cargo_env_config.rs+133
- tests/testsuite/cross_compile.rs+7-7
- tests/testsuite/doc.rs+76
- tests/testsuite/edition.rs+93-1
- tests/testsuite/features2.rs+74
- tests/testsuite/features_namespaced.rs+102
- tests/testsuite/fix.rs+201-68
- tests/testsuite/freshness.rs+3-3
- tests/testsuite/git.rs+1-1
- tests/testsuite/glob_targets.rs+4
- tests/testsuite/install.rs+61
- tests/testsuite/lto.rs+1-1
- tests/testsuite/main.rs+2
- tests/testsuite/message_format.rs+28-1
- tests/testsuite/old_cargos.rs+586
- tests/testsuite/path.rs+2-2
- tests/testsuite/registry.rs+30
- tests/testsuite/rename_deps.rs+1-1
- tests/testsuite/required_features.rs+18-18
- tests/testsuite/rustc.rs+101
- tests/testsuite/test.rs+55-52
- tests/testsuite/tool_paths.rs+21-18
- tests/testsuite/weak_dep_features.rs+100-1
0 commit comments