Skip to content

Commit

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

16 commits in 9e586fbd8b931494067144623b76c37d213b1ab6..ac84010322a31f4a581dafe26258aa4ac8dea9cd
2023-04-25 22:09:11 +0000 to 2023-05-02 13:41:16 +0000
- docs(registry): Further specify owner-remove response (rust-lang/cargo#12056) (rust-lang/cargo#12068)
- Remove repeated definite articles (rust-lang/cargo#12067)
- Document that adding `#[non_exhaustive]` on existing items is breaking. (rust-lang/cargo#10877)
- docs(commands): add missed preposition (rust-lang/cargo#12073)
- Fix warning with unused mut (rust-lang/cargo#12065)
- chore: move build-man workflow away from shell (rust-lang/cargo#12048)
- feat: Add `-Zmsrv-policy` feature flag (rust-lang/cargo#12043)
- chore: new xtask to check stale paths in autolabel defintions (rust-lang/cargo#12051)
- cargo-tree: Handle -e no-proc-macro when building the graph (rust-lang/cargo#12044)
- chore: update trigger_files in autolabel (rust-lang/cargo#12052)
- fix broken markdown in docs (rust-lang/cargo#12049)
- home: fix & enhance documentation (rust-lang/cargo#12047)
- chore: Mark unpublished crates as such (rust-lang/cargo#12045)
- Include rust-version in publish request (rust-lang/cargo#12041)
- chore(xtask): Add `cargo xtask unpublished` (rust-lang/cargo#12039)
- docs(ref): Specify 'rust_version' in Index format (rust-lang/cargo#12040)

r? `@ghost`
  • Loading branch information
bors committed May 3, 2023
2 parents 71af5c4 + 7401d18 commit cad92b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 61 files
+4 −0 .cargo/config.toml
+7 −0 .github/workflows/main.yml
+0 −1 .gitignore
+31 −9 Cargo.lock
+2 −1 benches/benchsuite/Cargo.toml
+8 −7 ci/validate-man.sh
+4 −0 crates/cargo-test-support/src/publish.rs
+2 −0 crates/cargo-test-support/src/registry.rs
+1 −0 crates/crates-io/lib.rs
+4 −0 crates/home/CHANGELOG.md
+1 −1 crates/home/Cargo.toml
+1 −1 crates/home/src/env.rs
+20 −22 crates/home/src/lib.rs
+0 −459 crates/mdman/Cargo.lock
+2 −1 crates/mdman/Cargo.toml
+0 −7 crates/mdman/build-man.sh
+1 −1 crates/mdman/doc/mdman.md
+4 −4 crates/mdman/doc/out/mdman.1
+3 −3 crates/mdman/doc/out/mdman.md
+4 −4 crates/mdman/doc/out/mdman.txt
+2 −1 crates/resolver-tests/Cargo.toml
+4 −0 crates/resolver-tests/src/lib.rs
+2 −1 crates/semver-check/Cargo.toml
+7 −0 crates/xtask-build-man/Cargo.toml
+108 −0 crates/xtask-build-man/src/main.rs
+8 −0 crates/xtask-stale-label/Cargo.toml
+91 −0 crates/xtask-stale-label/src/main.rs
+12 −0 crates/xtask-unpublished/Cargo.toml
+15 −0 crates/xtask-unpublished/src/main.rs
+157 −0 crates/xtask-unpublished/src/xtask.rs
+1 −1 src/cargo/core/compiler/build_context/target_info.rs
+1 −1 src/cargo/core/compiler/unit_dependencies.rs
+2 −0 src/cargo/core/features.rs
+1 −0 src/cargo/core/manifest.rs
+9 −1 src/cargo/core/resolver/version_prefs.rs
+7 −0 src/cargo/core/summary.rs
+1 −1 src/cargo/lib.rs
+2 −0 src/cargo/ops/registry.rs
+4 −0 src/cargo/ops/tree/graph.rs
+0 −18 src/cargo/ops/tree/mod.rs
+2 −1 src/cargo/sources/registry/index.rs
+9 −2 src/cargo/sources/registry/mod.rs
+6 −0 src/cargo/util/toml/mod.rs
+1 −5 src/doc/README.md
+0 −31 src/doc/build-man.sh
+1 −1 src/doc/man/cargo-install.md
+2 −2 src/doc/man/generated_txt/cargo-install.txt
+1 −1 src/doc/src/commands/cargo-install.md
+5 −0 src/doc/src/reference/registry-index.md
+6 −1 src/doc/src/reference/registry-web-api.md
+86 −1 src/doc/src/reference/semver.md
+10 −1 src/doc/src/reference/unstable.md
+1 −1 src/etc/man/cargo-install.1
+3 −0 tests/testsuite/alt_registry.rs
+1 −0 tests/testsuite/artifact_dep.rs
+2 −0 tests/testsuite/features_namespaced.rs
+5 −0 tests/testsuite/inheritable_workspace_fields.rs
+9 −0 tests/testsuite/publish.rs
+53 −2 tests/testsuite/tree.rs
+1 −0 tests/testsuite/weak_dep_features.rs
+19 −4 triagebot.toml

0 comments on commit cad92b4

Please sign in to comment.