Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Jul 27, 2024
1 parent a526d7c commit b9ec04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 63 files
+123 −1 CHANGELOG.md
+190 −182 Cargo.lock
+29 −28 Cargo.toml
+43 −0 crates/cargo-test-macro/src/lib.rs
+1 −4 crates/cargo-test-support/Cargo.toml
+32 −2 crates/cargo-test-support/src/compare.rs
+54 −49 crates/cargo-test-support/src/git.rs
+3 −0 crates/cargo-test-support/src/install.rs
+182 −62 crates/cargo-test-support/src/lib.rs
+35 −6 crates/cargo-test-support/src/paths.rs
+62 −3 crates/cargo-test-support/src/publish.rs
+102 −59 crates/cargo-test-support/src/registry.rs
+2 −2 crates/rustfix/Cargo.toml
+20 −0 src/bin/cargo/commands/package.rs
+3 −16 src/cargo/core/compiler/build_context/target_info.rs
+1 −1 src/cargo/core/compiler/build_runner/mod.rs
+1 −24 src/cargo/core/compiler/custom_build.rs
+62 −69 src/cargo/core/compiler/mod.rs
+4 −5 src/cargo/core/compiler/unit.rs
+2 −0 src/cargo/core/features.rs
+305 −28 src/cargo/ops/cargo_package.rs
+5 −1 src/cargo/ops/cargo_update.rs
+5 −3 src/cargo/ops/registry/mod.rs
+42 −34 src/cargo/ops/registry/publish.rs
+27 −27 src/cargo/sources/registry/index/mod.rs
+1 −1 src/cargo/sources/registry/mod.rs
+2 −25 src/cargo/util/toml/mod.rs
+46 −3 src/cargo/util/toml_mut/upgrade.rs
+13 −56 src/doc/contrib/src/tests/writing.md
+12 −3 src/doc/man/cargo-package.md
+10 −0 src/doc/man/generated_txt/cargo-package.txt
+14 −3 src/doc/src/commands/cargo-package.md
+2 −1 src/etc/_cargo
+1 −1 src/etc/cargo.bashcomp.sh
+16 −3 src/etc/man/cargo-package.1
+3 −3 tests/testsuite/alt_registry.rs
+28 −12 tests/testsuite/bad_manifest_path.rs
+32 −4 tests/testsuite/bench.rs
+23 −5 tests/testsuite/binary_name.rs
+0 −1 tests/testsuite/build.rs
+3 −3 tests/testsuite/build_plan.rs
+18 −16 tests/testsuite/cargo/z_help/stdout.term.svg
+2 −2 tests/testsuite/cargo_config/mod.rs
+39 −35 tests/testsuite/cargo_package/help/stdout.term.svg
+104 −80 tests/testsuite/doc.rs
+11 −21 tests/testsuite/features.rs
+1 −1 tests/testsuite/features_namespaced.rs
+2 −2 tests/testsuite/git.rs
+59 −55 tests/testsuite/install.rs
+1 −1 tests/testsuite/lints/implicit_features.rs
+6 −6 tests/testsuite/locate_project.rs
+35 −18 tests/testsuite/messages.rs
+1 −1 tests/testsuite/metabuild.rs
+25 −25 tests/testsuite/metadata.rs
+4 −4 tests/testsuite/open_namespaces.rs
+871 −4 tests/testsuite/package.rs
+41 −60 tests/testsuite/pkgid.rs
+4 −4 tests/testsuite/publish_lockfile.rs
+9 −9 tests/testsuite/read_manifest.rs
+3 −3 tests/testsuite/script.rs
+106 −82 tests/testsuite/test.rs
+1 −1 tests/testsuite/unit_graph.rs
+96 −2 tests/testsuite/update.rs

0 comments on commit b9ec04d

Please sign in to comment.