Skip to content

Commit

Permalink
Auto merge of #71742 - matthiaskrgr:submodule_upd, r=Dylan-DPC
Browse files Browse the repository at this point in the history
submodules: update cargo from 90931d9b3 to 258c89644

Changes:
````
Remove unnecessary loop in `maybe_spurious`
Fix error with git repo discovery and symlinks.
Allow failure when setting file mtime.
Support multiple `--target` flags on the CLI
build-std: Don't treat std like a "local" package.
Allow `cargo package --list` even for things that don't package.
````

I'd like to get rust-lang/cargo#8186 into nightly asap. :)

r? @ehuss
  • Loading branch information
bors committed May 1, 2020
2 parents fd61d06 + 868d559 commit a91d648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 54 files
+1 −1 src/bin/cargo/commands/clean.rs
+1 −1 src/bin/cargo/commands/fetch.rs
+6 −8 src/bin/cargo/commands/metadata.rs
+1 −1 src/bin/cargo/commands/package.rs
+1 −1 src/bin/cargo/commands/publish.rs
+4 −4 src/bin/cargo/commands/tree.rs
+12 −5 src/cargo/core/compiler/build_config.rs
+1 −5 src/cargo/core/compiler/build_context/mod.rs
+27 −15 src/cargo/core/compiler/build_context/target_info.rs
+69 −58 src/cargo/core/compiler/compilation.rs
+35 −21 src/cargo/core/compiler/compile_kind.rs
+27 −16 src/cargo/core/compiler/context/mod.rs
+3 −6 src/cargo/core/compiler/custom_build.rs
+1 −1 src/cargo/core/compiler/fingerprint.rs
+1 −1 src/cargo/core/compiler/job_queue.rs
+10 −8 src/cargo/core/compiler/mod.rs
+1 −2 src/cargo/core/compiler/output_depinfo.rs
+40 −27 src/cargo/core/compiler/standard_lib.rs
+7 −1 src/cargo/core/compiler/timings.rs
+14 −0 src/cargo/core/compiler/unit.rs
+19 −9 src/cargo/core/compiler/unit_dependencies.rs
+2 −0 src/cargo/core/features.rs
+9 −7 src/cargo/core/package.rs
+2 −1 src/cargo/core/profiles.rs
+7 −6 src/cargo/core/resolver/features.rs
+12 −6 src/cargo/ops/cargo_clean.rs
+91 −82 src/cargo/ops/cargo_compile.rs
+10 −6 src/cargo/ops/cargo_doc.rs
+19 −24 src/cargo/ops/cargo_fetch.rs
+3 −2 src/cargo/ops/cargo_install.rs
+18 −17 src/cargo/ops/cargo_output_metadata.rs
+24 −12 src/cargo/ops/cargo_package.rs
+5 −2 src/cargo/ops/cargo_run.rs
+35 −44 src/cargo/ops/cargo_test.rs
+2 −2 src/cargo/ops/registry.rs
+3 −3 src/cargo/ops/resolve.rs
+16 −14 src/cargo/ops/tree/graph.rs
+13 −13 src/cargo/ops/tree/mod.rs
+12 −7 src/cargo/sources/path.rs
+4 −4 src/cargo/util/command_prelude.rs
+21 −23 src/cargo/util/network.rs
+40 −0 src/cargo/util/paths.rs
+19 −0 src/doc/src/reference/unstable.md
+0 −1 tests/testsuite/cross_compile.rs
+40 −1 tests/testsuite/install.rs
+1 −0 tests/testsuite/main.rs
+144 −0 tests/testsuite/multitarget.rs
+52 −3 tests/testsuite/package.rs
+1 −1 tests/testsuite/plugins.rs
+4 −3 tests/testsuite/profile_config.rs
+2 −2 tests/testsuite/publish_lockfile.rs
+10 −5 tests/testsuite/registry.rs
+1 −0 tests/testsuite/run.rs
+29 −1 tests/testsuite/standard_lib.rs

0 comments on commit a91d648

Please sign in to comment.