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 55 files
+1 −1 Cargo.toml
+11 −0 crates/cargo-test-support/src/compare.rs
+0 −26 src/cargo/core/compiler/build_context/mod.rs
+29 −9 src/cargo/core/compiler/build_context/target_info.rs
+1 −1 src/cargo/core/compiler/build_runner/mod.rs
+1 −4 src/cargo/core/compiler/custom_build.rs
+4 −4 src/cargo/core/compiler/fingerprint/mod.rs
+2 −2 src/cargo/core/compiler/mod.rs
+3 −0 src/cargo/core/compiler/standard_lib.rs
+29 −0 src/cargo/core/compiler/unit.rs
+2 −0 src/cargo/core/compiler/unit_dependencies.rs
+35 −1 src/cargo/core/summary.rs
+8 −0 src/cargo/ops/cargo_compile/mod.rs
+6 −2 src/cargo/ops/cargo_compile/unit_generator.rs
+10 −7 src/cargo/util/context/mod.rs
+6 −2 src/cargo/util/lints.rs
+118 −18 src/cargo/util/toml/mod.rs
+3 −3 src/cargo/version.rs
+1 −1 src/doc/contrib/src/process/unstable.md
+1 −1 src/doc/src/reference/build-scripts.md
+1 −1 src/doc/src/reference/registry-index.md
+1 −1 src/doc/src/reference/resolver.md
+2 −2 src/doc/src/reference/semver.md
+2 −2 src/doc/src/reference/unstable.md
+144 −124 tests/testsuite/build_plan.rs
+845 −732 tests/testsuite/build_script.rs
+139 −101 tests/testsuite/cargo_command.rs
+47 −16 tests/testsuite/cargo_env_config.rs
+172 −204 tests/testsuite/cargo_features.rs
+17 −18 tests/testsuite/cargo_targets.rs
+73 −82 tests/testsuite/cfg.rs
+249 −160 tests/testsuite/check.rs
+165 −0 tests/testsuite/config_include.rs
+75 −93 tests/testsuite/directory.rs
+464 −354 tests/testsuite/doc.rs
+113 −102 tests/testsuite/docscrape.rs
+12 −6 tests/testsuite/features.rs
+700 −496 tests/testsuite/freshness.rs
+92 −46 tests/testsuite/git_auth.rs
+10 −13 tests/testsuite/https.rs
+243 −274 tests/testsuite/inheritable_workspace_fields.rs
+628 −525 tests/testsuite/install.rs
+344 −225 tests/testsuite/install_upgrade.rs
+92 −20 tests/testsuite/jobserver.rs
+195 −50 tests/testsuite/lints/unused_optional_dependencies.rs
+541 −518 tests/testsuite/patch.rs
+75 −76 tests/testsuite/pkgid.rs
+71 −26 tests/testsuite/proc_macro.rs
+28 −21 tests/testsuite/progress.rs
+100 −72 tests/testsuite/read_manifest.rs
+60 −28 tests/testsuite/rustdoc_extern_html.rs
+53 −0 tests/testsuite/rustflags.rs
+103 −90 tests/testsuite/ssh.rs
+105 −109 tests/testsuite/tool_paths.rs
+10 −11 tests/testsuite/warn_on_failure.rs