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 72 files
+2 −2 .github/workflows/audit.yml
+1 −1 .github/workflows/contrib.yml
+16 −16 .github/workflows/main.yml
+1 −1 .github/workflows/release.yml
+1 −1 crates/cargo-util/src/process_builder.rs
+10 −1 crates/xtask-lint-docs/src/main.rs
+48 −39 doc/book/src/reference/lints.md
+62 −3 doc/book/src/reference/unstable.md
+1 −0 src/bin/cargo/commands/run.rs
+14 −0 src/compiler/build_context/mod.rs
+17 −23 src/compiler/build_context/target_info.rs
+23 −1 src/compiler/build_runner/compilation_files.rs
+14 −1 src/compiler/build_runner/mod.rs
+1 −1 src/compiler/custom_build.rs
+1 −1 src/compiler/layout.rs
+19 −155 src/compiler/mod.rs
+1 −1 src/compiler/output_depinfo.rs
+2 −2 src/compiler/rustdoc.rs
+9 −7 src/compiler/standard_lib.rs
+314 −0 src/compiler/trim_paths.rs
+10 −0 src/context/mod.rs
+0 −2 src/diagnostics/lint.rs
+0 −1 src/diagnostics/rules/blanket_hint_mostly_unused.rs
+1 −2 src/diagnostics/rules/im_a_teapot.rs
+7 −4 src/diagnostics/rules/manual_readme.rs
+2 −2 src/diagnostics/rules/missing_lints_inheritance.rs
+6 −6 src/diagnostics/rules/mod.rs
+17 −14 src/diagnostics/rules/non_kebab_case_bins.rs
+6 −5 src/diagnostics/rules/non_kebab_case_features.rs
+9 −7 src/diagnostics/rules/non_kebab_case_packages.rs
+6 −5 src/diagnostics/rules/non_snake_case_features.rs
+9 −7 src/diagnostics/rules/non_snake_case_packages.rs
+3 −2 src/diagnostics/rules/redundant_homepage.rs
+4 −2 src/diagnostics/rules/text_direction_codepoint_in_comment.rs
+4 −2 src/diagnostics/rules/text_direction_codepoint_in_literal.rs
+1 −2 src/diagnostics/rules/unknown_lints.rs
+12 −7 src/diagnostics/rules/unused_dependencies.rs
+6 −5 src/diagnostics/rules/unused_workspace_dependencies.rs
+6 −4 src/diagnostics/rules/unused_workspace_package_fields.rs
+2 −2 src/ops/cargo_add/mod.rs
+10 −0 src/ops/cargo_clean.rs
+2 −2 src/ops/cargo_fix/mod.rs
+1 −1 src/ops/cargo_new.rs
+1 −1 src/ops/cargo_package/verify.rs
+1 −1 src/ops/cargo_test.rs
+6 −1 src/ops/lockfile.rs
+1 −1 src/ops/resolve.rs
+1 −1 src/resolver/errors.rs
+1 −1 src/sources/directory.rs
+2 −6 src/sources/git/source.rs
+24 −20 src/sources/git/utils.rs
+2 −2 src/sources/path.rs
+17 −1 src/util/rustc.rs
+9 −2 src/workspace/parser/mod.rs
+19 −3 src/workspace/parser/targets.rs
+28 −0 tests/testsuite/build_script.rs
+16 −25 tests/testsuite/cfg.rs
+456 −0 tests/testsuite/git.rs
+74 −6 tests/testsuite/lints/manual_readme.rs
+2 −2 tests/testsuite/lints/mod.rs
+9 −9 tests/testsuite/lints/non_kebab_case_bins.rs
+3 −3 tests/testsuite/lints/non_kebab_case_features.rs
+4 −4 tests/testsuite/lints/non_kebab_case_packages.rs
+3 −3 tests/testsuite/lints/non_snake_case_features.rs
+4 −4 tests/testsuite/lints/non_snake_case_packages.rs
+3 −3 tests/testsuite/lints/redundant_homepage.rs
+56 −56 tests/testsuite/lints/unused_dependencies.rs
+4 −4 tests/testsuite/lints/unused_workspace_dependencies.rs
+4 −4 tests/testsuite/lints/unused_workspace_package_fields.rs
+722 −12 tests/testsuite/profile_trim_paths.rs
+8 −8 tests/testsuite/warning_override.rs
+49 −1 tests/testsuite/workspaces.rs
Loading