Skip to content

Commit

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

14 commits in 7e484fc1a766f56dbc95380f45719698e0c82749..810cbad9a123ad4ee0a55a96171b8f8478ff1c03
2022-10-27 15:20:57 +0000 to 2022-11-02 21:04:31 +0000
- Update curl-sys (rust-lang/cargo#11326)
- Mention fix on build script deadlock (rust-lang/cargo#11325)
- Make cargo forward pre-existing CARGO if set (rust-lang/cargo#11285)
- Clean up workspace dependencies after cargo remove (rust-lang/cargo#11242)
- Update the outdated link for rust-semverver (rust-lang/cargo#11322)
- Fix broken link to compilation entry point (rust-lang/cargo#11317)
- Only remove fingerprints and build script artifacts of the requested package (rust-lang/cargo#10621)
- Newer anyhow features are required (rust-lang/cargo#11316)
- Clean stale git temp files (rust-lang/cargo#11308)
- Report crate size on package and publish (rust-lang/cargo#11270)
- add a note that some warnings (and/or errors) can be auto-fixed (rust-lang/cargo#10989)
- Update libcurl (rust-lang/cargo#11307)
- artifact deps shoud works when target field specified coexists with `optional = true` (rust-lang/cargo#11183)
- Fix singular verb in tests page (rust-lang/cargo#11300)

r? `@ghost`
  • Loading branch information
bors committed Nov 3, 2022
2 parents ce1a7e4 + 331aa45 commit 432b1a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1036,9 +1036,9 @@ dependencies = [

[[package]]
name = "curl"
version = "0.4.43"
version = "0.4.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37d855aeef205b43f65a5001e0997d81f8efca7badad4fad7d897aa7f0d0651f"
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
dependencies = [
"curl-sys",
"libc",
Expand All @@ -1051,9 +1051,9 @@ dependencies = [

[[package]]
name = "curl-sys"
version = "0.4.55+curl-7.83.1"
version = "0.4.59+curl-7.86.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23734ec77368ec583c2e61dd3f0b0e5c98b93abe6d2a004ca06b91dd7e3e2762"
checksum = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407"
dependencies = [
"cc",
"libc",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 72 files
+2 −0 CHANGELOG.md
+3 −3 Cargo.toml
+1 −0 crates/cargo-test-support/src/compare.rs
+6 −2 crates/cargo-test-support/src/lib.rs
+53 −0 src/bin/cargo/commands/remove.rs
+123 −18 src/cargo/core/compiler/job_queue.rs
+16 −1 src/cargo/core/compiler/mod.rs
+8 −12 src/cargo/core/compiler/unit_dependencies.rs
+28 −25 src/cargo/core/resolver/features.rs
+46 −2 src/cargo/ops/cargo_clean.rs
+29 −4 src/cargo/ops/cargo_package.rs
+18 −0 src/cargo/ops/registry.rs
+1 −1 src/cargo/ops/registry/auth.rs
+1 −5 src/cargo/ops/tree/graph.rs
+42 −8 src/cargo/sources/git/utils.rs
+14 −1 src/cargo/util/config/mod.rs
+43 −0 src/cargo/util/mod.rs
+1 −1 src/cargo/util/toml_mut/manifest.rs
+1 −1 src/doc/contrib/src/architecture/codebase.md
+1 −1 src/doc/src/guide/tests.md
+6 −0 src/doc/src/reference/environment-variables.md
+1 −1 src/doc/src/reference/semver.md
+58 −1 tests/testsuite/artifact_dep.rs
+24 −5 tests/testsuite/build_script.rs
+14 −1 tests/testsuite/cargo_command.rs
+3 −0 tests/testsuite/cargo_remove/mod.rs
+5 −0 tests/testsuite/cargo_remove/workspace/in/Cargo.toml
+24 −0 tests/testsuite/cargo_remove/workspace/in/my-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace/in/my-package/src/main.rs
+25 −0 tests/testsuite/cargo_remove/workspace/mod.rs
+2 −0 tests/testsuite/cargo_remove/workspace/out/Cargo.toml
+21 −0 tests/testsuite/cargo_remove/workspace/out/my-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace/out/my-package/src/main.rs
+2 −0 tests/testsuite/cargo_remove/workspace/stderr.log
+0 −0 tests/testsuite/cargo_remove/workspace/stdout.log
+30 −0 tests/testsuite/cargo_remove/workspace_non_virtual/in/Cargo.toml
+6 −0 tests/testsuite/cargo_remove/workspace_non_virtual/in/my-member/Cargo.toml
+0 −0 tests/testsuite/cargo_remove/workspace_non_virtual/in/my-member/src/main.rs
+25 −0 tests/testsuite/cargo_remove/workspace_non_virtual/mod.rs
+24 −0 tests/testsuite/cargo_remove/workspace_non_virtual/out/Cargo.toml
+6 −0 tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member/Cargo.toml
+0 −0 tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member/src/main.rs
+2 −0 tests/testsuite/cargo_remove/workspace_non_virtual/stderr.log
+0 −0 tests/testsuite/cargo_remove/workspace_non_virtual/stdout.log
+5 −0 tests/testsuite/cargo_remove/workspace_preserved/in/Cargo.toml
+22 −0 tests/testsuite/cargo_remove/workspace_preserved/in/my-other-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace_preserved/in/my-other-package/src/main.rs
+24 −0 tests/testsuite/cargo_remove/workspace_preserved/in/my-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace_preserved/in/my-package/src/main.rs
+25 −0 tests/testsuite/cargo_remove/workspace_preserved/mod.rs
+5 −0 tests/testsuite/cargo_remove/workspace_preserved/out/Cargo.toml
+22 −0 tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package/src/main.rs
+21 −0 tests/testsuite/cargo_remove/workspace_preserved/out/my-package/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/workspace_preserved/out/my-package/src/main.rs
+2 −0 tests/testsuite/cargo_remove/workspace_preserved/stderr.log
+0 −0 tests/testsuite/cargo_remove/workspace_preserved/stdout.log
+272 −1 tests/testsuite/check.rs
+90 −10 tests/testsuite/clean.rs
+2 −0 tests/testsuite/credential_process.rs
+2 −0 tests/testsuite/cross_publish.rs
+2 −0 tests/testsuite/features_namespaced.rs
+33 −0 tests/testsuite/git.rs
+1 −1 tests/testsuite/git_gc.rs
+38 −0 tests/testsuite/install.rs
+311 −0 tests/testsuite/package.rs
+31 −0 tests/testsuite/publish.rs
+13 −1 tests/testsuite/publish_lockfile.rs
+1 −0 tests/testsuite/registry.rs
+1 −0 tests/testsuite/source_replacement.rs
+13 −0 tests/testsuite/test.rs
+1 −0 tests/testsuite/weak_dep_features.rs

0 comments on commit 432b1a4

Please sign in to comment.