Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 69 files
+27 −37 .github/workflows/main.yml
+23 −7 Cargo.lock
+3 −3 Cargo.toml
+46 −284 crates/cargo-test-support/src/compare.rs
+0 −49 crates/cargo-test-support/src/diff.rs
+157 −71 crates/cargo-test-support/src/lib.rs
+2 −5 crates/mdman/src/hbs.rs
+1 −1 crates/rustfix/Cargo.toml
+9 −4 crates/rustfix/src/error.rs
+27 −16 crates/rustfix/src/lib.rs
+203 −146 crates/rustfix/src/replace.rs
+2 −6 src/bin/cargo/commands/run.rs
+4 −0 src/cargo/core/compiler/compilation.rs
+11 −5 src/cargo/core/compiler/job_queue/mod.rs
+7 −12 src/cargo/core/compiler/mod.rs
+2 −0 src/cargo/core/features.rs
+6 −2 src/cargo/ops/cargo_compile/mod.rs
+10 −14 src/cargo/ops/fix.rs
+23 −0 src/cargo/util/context/mod.rs
+4 −4 src/cargo/util/toml/mod.rs
+32 −8 src/cargo/util/toml/targets.rs
+1 −1 src/doc/contrib/src/implementation/console.md
+0 −1 src/doc/src/reference/environment-variables.md
+20 −0 src/doc/src/reference/unstable.md
+33 −49 tests/testsuite/artifact_dep.rs
+185 −0 tests/testsuite/binary_name.rs
+4 −262 tests/testsuite/build.rs
+0 −1 tests/testsuite/build_script.rs
+0 −1 tests/testsuite/build_script_extra_link_arg.rs
+0 −1 tests/testsuite/cache_messages.rs
+8 −6 tests/testsuite/cargo/z_help/stdout.term.svg
+0 −1 tests/testsuite/cargo_command.rs
+0 −8 tests/testsuite/check.rs
+1 −23 tests/testsuite/check_cfg.rs
+6 −3 tests/testsuite/clean.rs
+0 −1 tests/testsuite/collisions.rs
+0 −1 tests/testsuite/features2.rs
+0 −1 tests/testsuite/fetch.rs
+0 −3 tests/testsuite/fix.rs
+12 −12 tests/testsuite/freshness.rs
+12 −12 tests/testsuite/freshness_checksum.rs
+0 −3 tests/testsuite/future_incompat_report.rs
+0 −1 tests/testsuite/git_auth.rs
+59 −52 tests/testsuite/global_cache_tracker.rs
+0 −3 tests/testsuite/install.rs
+0 −1 tests/testsuite/lto.rs
+1 −0 tests/testsuite/main.rs
+0 −2 tests/testsuite/message_format.rs
+0 −3 tests/testsuite/metabuild.rs
+0 −2 tests/testsuite/offline.rs
+0 −1 tests/testsuite/package.rs
+0 −1 tests/testsuite/package_features.rs
+0 −2 tests/testsuite/profile_config.rs
+0 −1 tests/testsuite/profile_overrides.rs
+0 −2 tests/testsuite/profile_targets.rs
+0 −2 tests/testsuite/profile_trim_paths.rs
+0 −4 tests/testsuite/profiles.rs
+0 −1 tests/testsuite/progress.rs
+0 −1 tests/testsuite/publish.rs
+0 −2 tests/testsuite/rustc.rs
+0 −2 tests/testsuite/rustc_info_cache.rs
+0 −3 tests/testsuite/rustdoc_extern_html.rs
+33 −9 tests/testsuite/script.rs
+0 −1 tests/testsuite/search.rs
+0 −3 tests/testsuite/standard_lib.rs
+21 −11 tests/testsuite/test.rs
+0 −2 tests/testsuite/warn_on_failure.rs
+221 −0 tests/testsuite/warning_override.rs
+2 −0 triagebot.toml
Loading