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 84 files
+1 −1 crates/cargo-util-schemas/Cargo.toml
+27 −0 crates/cargo-util-schemas/registry_config.schema.json
+63 −0 crates/cargo-util-schemas/src/index.rs
+29 −0 crates/cargo-util/src/registry.rs
+1 −21 src/cargo/core/compiler/artifact.rs
+4 −3 src/cargo/core/compiler/mod.rs
+6 −2 src/cargo/core/compiler/unused_deps.rs
+5 −217 src/cargo/core/workspace.rs
+32 −25 src/cargo/diagnostics/lint.rs
+3 −2 src/cargo/diagnostics/mod.rs
+256 −0 src/cargo/diagnostics/passes.rs
+8 −14 src/cargo/diagnostics/rules/blanket_hint_mostly_unused.rs
+47 −0 src/cargo/diagnostics/rules/deferred_parse_diagnostics.rs
+9 −10 src/cargo/diagnostics/rules/im_a_teapot.rs
+16 −25 src/cargo/diagnostics/rules/implicit_minimum_version_req.rs
+46 −3 src/cargo/diagnostics/rules/missing_lints_features.rs
+7 −13 src/cargo/diagnostics/rules/missing_lints_inheritance.rs
+173 −26 src/cargo/diagnostics/rules/mod.rs
+9 −14 src/cargo/diagnostics/rules/non_kebab_case_bins.rs
+11 −14 src/cargo/diagnostics/rules/non_kebab_case_features.rs
+11 −14 src/cargo/diagnostics/rules/non_kebab_case_packages.rs
+11 −14 src/cargo/diagnostics/rules/non_snake_case_features.rs
+11 −14 src/cargo/diagnostics/rules/non_snake_case_packages.rs
+11 −14 src/cargo/diagnostics/rules/redundant_homepage.rs
+11 −14 src/cargo/diagnostics/rules/redundant_readme.rs
+7 −8 src/cargo/diagnostics/rules/text_direction_codepoint_in_comment.rs
+7 −8 src/cargo/diagnostics/rules/text_direction_codepoint_in_literal.rs
+52 −8 src/cargo/diagnostics/rules/unknown_lints.rs
+10 −14 src/cargo/diagnostics/rules/unused_dependencies.rs
+7 −12 src/cargo/diagnostics/rules/unused_workspace_dependencies.rs
+7 −12 src/cargo/diagnostics/rules/unused_workspace_package_fields.rs
+4 −1 src/cargo/ops/cargo_compile/mod.rs
+4 −1 src/cargo/ops/cargo_fetch.rs
+7 −0 src/cargo/sources/git/source.rs
+7 −26 src/cargo/sources/registry/download.rs
+11 −55 src/cargo/sources/registry/mod.rs
+24 −20 src/cargo/util/canonical_url.rs
+0 −4 tests/testsuite/artifact_dep.rs
+104 −94 tests/testsuite/bad_config.rs
+4 −2 tests/testsuite/bench.rs
+13 −14 tests/testsuite/build.rs
+9 −9 tests/testsuite/build_script.rs
+2 −1 tests/testsuite/cargo_features.rs
+2 −1 tests/testsuite/cargo_targets.rs
+12 −9 tests/testsuite/check.rs
+1 −1 tests/testsuite/check_cfg.rs
+3 −2 tests/testsuite/cross_compile.rs
+4 −2 tests/testsuite/edition.rs
+2 −1 tests/testsuite/features.rs
+2 −1 tests/testsuite/fetch.rs
+4 −2 tests/testsuite/freshness.rs
+4 −2 tests/testsuite/freshness_checksum.rs
+2 −1 tests/testsuite/hints.rs
+26 −20 tests/testsuite/inheritable_workspace_fields.rs
+4 −4 tests/testsuite/lints/blanket_hint_mostly_unused.rs
+47 −357 tests/testsuite/lints/implicit_minimum_version_req.rs
+7 −21 tests/testsuite/lints/missing_lints_inheritance.rs
+24 −49 tests/testsuite/lints/mod.rs
+4 −12 tests/testsuite/lints/non_kebab_case_bins.rs
+4 −6 tests/testsuite/lints/non_kebab_case_features.rs
+10 −14 tests/testsuite/lints/non_kebab_case_packages.rs
+4 −6 tests/testsuite/lints/non_snake_case_features.rs
+2 −6 tests/testsuite/lints/non_snake_case_packages.rs
+3 −9 tests/testsuite/lints/redundant_homepage.rs
+9 −27 tests/testsuite/lints/redundant_readme.rs
+4 −12 tests/testsuite/lints/text_direction_codepoint.rs
+3 −9 tests/testsuite/lints/unknown_lints.rs
+2 −17 tests/testsuite/lints/unused_workspace_dependencies.rs
+3 −4 tests/testsuite/lints/unused_workspace_package_fields.rs
+9 −5 tests/testsuite/lints_table.rs
+6 −0 tests/testsuite/package.rs
+1 −1 tests/testsuite/pgo.rs
+6 −3 tests/testsuite/proc_macro.rs
+10 −9 tests/testsuite/profiles.rs
+4 −2 tests/testsuite/pub_priv.rs
+17 −22 tests/testsuite/registry.rs
+6 −5 tests/testsuite/run.rs
+42 −3 tests/testsuite/rustc.rs
+1 −1 tests/testsuite/rustdocflags.rs
+22 −22 tests/testsuite/rustflags.rs
+2 −1 tests/testsuite/script/cargo.rs
+1 −1 tests/testsuite/test.rs
+12 −6 tests/testsuite/warning_override.rs
+2 −1 tests/testsuite/workspaces.rs
Loading