Commit 432b1a4
committed
Auto merge of rust-lang#103860 - weihanglo:update-cargo, r=ehuss
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`2 files changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1036 | 1036 | | |
1037 | 1037 | | |
1038 | 1038 | | |
1039 | | - | |
| 1039 | + | |
1040 | 1040 | | |
1041 | | - | |
| 1041 | + | |
1042 | 1042 | | |
1043 | 1043 | | |
1044 | 1044 | | |
| |||
1051 | 1051 | | |
1052 | 1052 | | |
1053 | 1053 | | |
1054 | | - | |
| 1054 | + | |
1055 | 1055 | | |
1056 | | - | |
| 1056 | + | |
1057 | 1057 | | |
1058 | 1058 | | |
1059 | 1059 | | |
| |||
- CHANGELOG.md+2
- Cargo.toml+3-3
- crates/cargo-test-support/src/compare.rs+1
- crates/cargo-test-support/src/lib.rs+6-2
- src/bin/cargo/commands/remove.rs+53
- src/cargo/core/compiler/job_queue.rs+123-18
- src/cargo/core/compiler/mod.rs+16-1
- src/cargo/core/compiler/unit_dependencies.rs+8-12
- src/cargo/core/resolver/features.rs+28-25
- src/cargo/ops/cargo_clean.rs+46-2
- src/cargo/ops/cargo_package.rs+29-4
- src/cargo/ops/registry.rs+18
- src/cargo/ops/registry/auth.rs+1-1
- src/cargo/ops/tree/graph.rs+1-5
- src/cargo/sources/git/utils.rs+42-8
- src/cargo/util/config/mod.rs+14-1
- src/cargo/util/mod.rs+43
- src/cargo/util/toml_mut/manifest.rs+1-1
- src/doc/contrib/src/architecture/codebase.md+1-1
- src/doc/src/guide/tests.md+1-1
- src/doc/src/reference/environment-variables.md+6
- src/doc/src/reference/semver.md+1-1
- tests/testsuite/artifact_dep.rs+58-1
- tests/testsuite/build_script.rs+24-5
- tests/testsuite/cargo_command.rs+14-1
- tests/testsuite/cargo_remove/mod.rs+3
- tests/testsuite/cargo_remove/workspace/in/Cargo.toml+5
- tests/testsuite/cargo_remove/workspace/in/my-package/Cargo.toml+24
- tests/testsuite/cargo_remove/workspace/in/my-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace/mod.rs+25
- tests/testsuite/cargo_remove/workspace/out/Cargo.toml+2
- tests/testsuite/cargo_remove/workspace/out/my-package/Cargo.toml+21
- tests/testsuite/cargo_remove/workspace/out/my-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace/stderr.log+2
- tests/testsuite/cargo_remove/workspace/stdout.log
- tests/testsuite/cargo_remove/workspace_non_virtual/in/Cargo.toml+30
- tests/testsuite/cargo_remove/workspace_non_virtual/in/my-member/Cargo.toml+6
- tests/testsuite/cargo_remove/workspace_non_virtual/in/my-member/src/main.rs
- tests/testsuite/cargo_remove/workspace_non_virtual/mod.rs+25
- tests/testsuite/cargo_remove/workspace_non_virtual/out/Cargo.toml+24
- tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member/Cargo.toml+6
- tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member/src/main.rs
- tests/testsuite/cargo_remove/workspace_non_virtual/stderr.log+2
- tests/testsuite/cargo_remove/workspace_non_virtual/stdout.log
- tests/testsuite/cargo_remove/workspace_preserved/in/Cargo.toml+5
- tests/testsuite/cargo_remove/workspace_preserved/in/my-other-package/Cargo.toml+22
- tests/testsuite/cargo_remove/workspace_preserved/in/my-other-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace_preserved/in/my-package/Cargo.toml+24
- tests/testsuite/cargo_remove/workspace_preserved/in/my-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace_preserved/mod.rs+25
- tests/testsuite/cargo_remove/workspace_preserved/out/Cargo.toml+5
- tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package/Cargo.toml+22
- tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace_preserved/out/my-package/Cargo.toml+21
- tests/testsuite/cargo_remove/workspace_preserved/out/my-package/src/main.rs+1
- tests/testsuite/cargo_remove/workspace_preserved/stderr.log+2
- tests/testsuite/cargo_remove/workspace_preserved/stdout.log
- tests/testsuite/check.rs+272-1
- tests/testsuite/clean.rs+90-10
- tests/testsuite/credential_process.rs+2
- tests/testsuite/cross_publish.rs+2
- tests/testsuite/features_namespaced.rs+2
- tests/testsuite/git.rs+33
- tests/testsuite/git_gc.rs+1-1
- tests/testsuite/install.rs+38
- tests/testsuite/package.rs+311
- tests/testsuite/publish.rs+31
- tests/testsuite/publish_lockfile.rs+13-1
- tests/testsuite/registry.rs+1
- tests/testsuite/source_replacement.rs+1
- tests/testsuite/test.rs+13
- tests/testsuite/weak_dep_features.rs+1
0 commit comments