Skip to content

Commit

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

10 commits in 84976cd699f4aea56cb3a90ce3eedeed9e20d5a5..1cff2ee6b92e0ad3f87c44b70b28f788b2528b3c
2024-01-12 15:55:43 +0000 to 2024-01-16 16:56:57 +0000
- doc: add a heading to highlight "How to find features enabled on dependencies" (rust-lang/cargo#13305)
- fix(cargo-update): `--precise` accept arbitrary git revisions (rust-lang/cargo#13250)
- Strip debuginfo when debuginfo is not requested (rust-lang/cargo#13257)
- Update ahash dependency to 0.8.7 (rust-lang/cargo#13301)
- docs: add more links to pkgid spec chapter (rust-lang/cargo#13298)
- fix(metadata): Stabilize id format as PackageIDSpec (rust-lang/cargo#12914)
- Introduce `-Zprecise-pre-release` unstable flag (rust-lang/cargo#13296)
- Delete sentence about parentheses being unsupported in license (rust-lang/cargo#13292)
- Add guidance on setting homepage in manifest (rust-lang/cargo#13293)
- Clarify the function of the test options (rust-lang/cargo#13236)

r? ghost
  • Loading branch information
bors committed Jan 17, 2024
2 parents 098d4fd + 7e1e61a commit 6ed31ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 37 files
+2 −2 Cargo.lock
+1 −1 src/bin/cargo/commands/test.rs
+3 −2 src/cargo/core/compiler/mod.rs
+2 −0 src/cargo/core/features.rs
+3 −3 src/cargo/core/package.rs
+77 −11 src/cargo/core/profiles.rs
+1 −12 src/cargo/core/source_id.rs
+12 −0 src/cargo/ops/cargo_compile/mod.rs
+1 −1 src/cargo/ops/cargo_generate_lockfile.rs
+23 −17 src/cargo/ops/cargo_output_metadata.rs
+71 −23 src/cargo/sources/git/source.rs
+2 −14 src/cargo/sources/git/utils.rs
+19 −12 src/doc/man/cargo-metadata.md
+5 −1 src/doc/man/cargo-pkgid.md
+20 −13 src/doc/man/generated_txt/cargo-metadata.txt
+7 −1 src/doc/man/generated_txt/cargo-pkgid.txt
+19 −12 src/doc/src/commands/cargo-metadata.md
+5 −1 src/doc/src/commands/cargo-pkgid.md
+8 −4 src/doc/src/reference/manifest.md
+3 −1 src/doc/src/reference/resolver.md
+20 −0 src/doc/src/reference/unstable.md
+16 −10 src/etc/man/cargo-metadata.1
+3 −1 src/etc/man/cargo-pkgid.1
+15 −15 tests/testsuite/alt_registry.rs
+1 −0 tests/testsuite/cargo/z_help/stdout.log
+1 −1 tests/testsuite/cargo_test/help/stdout.log
+1 −1 tests/testsuite/features_namespaced.rs
+11 −13 tests/testsuite/git.rs
+1 −0 tests/testsuite/main.rs
+221 −215 tests/testsuite/metadata.rs
+60 −0 tests/testsuite/precise_pre_release.rs
+76 −1 tests/testsuite/profiles.rs
+1 −1 tests/testsuite/read_manifest.rs
+2 −0 tests/testsuite/run.rs
+6 −6 tests/testsuite/script.rs
+4 −4 tests/testsuite/unit_graph.rs
+107 −9 tests/testsuite/update.rs

0 comments on commit 6ed31ab

Please sign in to comment.