Skip to content

Commit

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

12 commits in 572e201536dc2e4920346e28037b63c0f4d88b3c..c68432f1e5cbbc09833699a951b1b5b059651dff
2021-02-24 16:51:20 +0000 to 2021-03-02 18:26:29 +0000
- Don't panic when printing JSON with non-utf8 paths (rust-lang/cargo#9226)
- Detect changes for JSON spec targets. (rust-lang/cargo#9223)
- Fix `cargo_target_empty_cfg` test with env var. (rust-lang/cargo#9225)
- Correct default cargo new edition (rust-lang/cargo#9202)
- Update split-debuginfo docs around the default. (rust-lang/cargo#9224)
- Minor update to registry API error messages. (rust-lang/cargo#9213)
- Some minor code cleanup. (rust-lang/cargo#9214)
- doc: Fix spelling worksapce->workspace (rust-lang/cargo#9212)
- Update SPDX version in docs. (rust-lang/cargo#9209)
- Throw error if CARGO_TARGET_DIR is an empty string (rust-lang/cargo#8939)
- testsuite: Use split debuginfo on macos. (rust-lang/cargo#9207)
- testsuite: Improve performance when using rustup. (rust-lang/cargo#9206)
  • Loading branch information
JohnTitor authored Mar 3, 2021
2 parents 68d4ff0 + db17e0a commit 374c90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 37 files
+18 −0 crates/cargo-test-support/src/lib.rs
+7 −7 crates/crates-io/lib.rs
+1 −1 src/bin/cargo/commands/install.rs
+1 −1 src/bin/cargo/commands/locate_project.rs
+1 −1 src/bin/cargo/commands/metadata.rs
+3 −1 src/bin/cargo/commands/read_manifest.rs
+2 −2 src/bin/cargo/commands/verify_project.rs
+2 −3 src/bin/cargo/main.rs
+11 −7 src/cargo/core/compiler/build_context/target_info.rs
+2 −2 src/cargo/core/compiler/compilation.rs
+30 −1 src/cargo/core/compiler/compile_kind.rs
+22 −3 src/cargo/core/compiler/fingerprint.rs
+2 −2 src/cargo/core/package.rs
+1 −1 src/cargo/core/resolver/resolve.rs
+2 −2 src/cargo/core/resolver/types.rs
+5 −2 src/cargo/core/shell.rs
+1 −4 src/cargo/ops/cargo_new.rs
+1 −1 src/cargo/ops/cargo_test.rs
+89 −74 src/cargo/ops/registry.rs
+1 −1 src/cargo/sources/registry/index.rs
+24 −11 src/cargo/util/config/mod.rs
+5 −0 src/cargo/util/config/path.rs
+1 −1 src/cargo/util/process_builder.rs
+28 −6 src/cargo/util/rustc.rs
+1 −1 src/doc/src/guide/build-cache.md
+5 −6 src/doc/src/reference/manifest.md
+9 −5 src/doc/src/reference/profiles.md
+1 −3 tests/testsuite/build.rs
+28 −0 tests/testsuite/config.rs
+133 −84 tests/testsuite/custom_target.rs
+8 −8 tests/testsuite/lto.rs
+26 −0 tests/testsuite/metadata.rs
+9 −6 tests/testsuite/old_cargos.rs
+5 −2 tests/testsuite/owner.rs
+68 −10 tests/testsuite/publish.rs
+1 −1 tests/testsuite/update.rs
+1 −1 tests/testsuite/yank.rs

0 comments on commit 374c90b

Please sign in to comment.