├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-false-positive.yml │ ├── 2-false-negative.yml │ ├── 3-bug-report.yml │ ├── 4-feature-request.yml │ └── config.yml ├── dependabot.yml ├── settings.yml └── workflows │ ├── actionlint.yml │ ├── add_new_rust_to_matrix.yml │ ├── build-binaries.yml │ ├── ci.yml │ ├── dependencies.yml │ ├── lint_fix.yml │ ├── release.yml │ └── update_snapshots.yml ├── .gitignore ├── AGENTS.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── brand ├── Extra Logo Pincers and Box.ai ├── Extra Logo Pincers and Box.jpg ├── Extra Logo Pincers and Box.png ├── Icon Blue.ai ├── Icon Blue.jpg ├── Icon Blue.png ├── Icon Orange.ai ├── Icon Orange.jpg ├── Icon Orange.png ├── Icon White.ai ├── Icon White.jpg ├── Icon White.png ├── Logo 1.ai ├── Logo 1.jpg ├── Logo 1.png ├── Logo 2.ai ├── Logo 2.jpg ├── Logo 2.png └── banner.png ├── funding.json ├── scripts ├── download_prebuilt_test_rustdocs.sh ├── get_current_version.sh ├── hash_test_rustdocs_inputs.sh ├── is_version_already_uploaded.sh ├── make_new_lint.sh ├── make_new_test_crate.sh ├── regenerate_test_rustdocs.sh └── rename_lint.sh ├── src ├── callbacks.rs ├── check_release.rs ├── config.rs ├── data_generation │ ├── error.rs │ ├── generate.rs │ ├── mod.rs │ ├── progress.rs │ └── request.rs ├── lib.rs ├── lints │ ├── AGENTS.md │ ├── attribute_proc_macro_missing.ron │ ├── auto_trait_impl_removed.ron │ ├── constructible_struct_adds_field.ron │ ├── constructible_struct_adds_private_field.ron │ ├── constructible_struct_changed_type.ron │ ├── declarative_macro_missing.ron │ ├── derive_helper_attr_removed.ron │ ├── derive_proc_macro_missing.ron │ ├── derive_trait_impl_removed.ron │ ├── enum_discriminants_undefined_non_exhaustive_variant.ron │ ├── enum_discriminants_undefined_non_unit_variant.ron │ ├── enum_marked_non_exhaustive.ron │ ├── enum_missing.ron │ ├── enum_must_use_added.ron │ ├── enum_must_use_removed.ron │ ├── enum_no_longer_non_exhaustive.ron │ ├── enum_no_repr_variant_discriminant_changed.ron │ ├── enum_non_exhaustive_struct_variant_field_added.ron │ ├── enum_non_exhaustive_tuple_variant_changed_kind.ron │ ├── enum_non_exhaustive_tuple_variant_field_added.ron │ ├── enum_now_doc_hidden.ron │ ├── enum_repr_int_added.ron │ ├── enum_repr_int_changed.ron │ ├── enum_repr_int_removed.ron │ ├── enum_repr_transparent_removed.ron │ ├── enum_repr_variant_discriminant_changed.ron │ ├── enum_struct_variant_changed_kind.ron │ ├── enum_struct_variant_field_added.ron │ ├── enum_struct_variant_field_marked_deprecated.ron │ ├── enum_struct_variant_field_missing.ron │ ├── enum_struct_variant_field_now_doc_hidden.ron │ ├── enum_tuple_variant_changed_kind.ron │ ├── enum_tuple_variant_field_added.ron │ ├── enum_tuple_variant_field_marked_deprecated.ron │ ├── enum_tuple_variant_field_missing.ron │ ├── enum_tuple_variant_field_now_doc_hidden.ron │ ├── enum_unit_variant_changed_kind.ron │ ├── enum_variant_added.ron │ ├── enum_variant_marked_deprecated.ron │ ├── enum_variant_marked_non_exhaustive.ron │ ├── enum_variant_missing.ron │ ├── enum_variant_no_longer_non_exhaustive.ron │ ├── exhaustive_enum_added.ron │ ├── exported_function_abi_no_longer_unwind.ron │ ├── exported_function_abi_now_unwind.ron │ ├── exported_function_changed_abi.ron │ ├── exported_function_now_returns_unit.ron │ ├── exported_function_parameter_count_changed.ron │ ├── exported_function_requires_more_target_features.ron │ ├── exported_function_target_feature_added.ron │ ├── feature_missing.ron │ ├── feature_not_enabled_by_default.ron │ ├── function_abi_no_longer_unwind.ron │ ├── function_abi_now_unwind.ron │ ├── function_changed_abi.ron │ ├── function_const_generic_reordered.ron │ ├── function_const_removed.ron │ ├── function_export_name_changed.ron │ ├── function_generic_type_reordered.ron │ ├── function_like_proc_macro_missing.ron │ ├── function_marked_deprecated.ron │ ├── function_missing.ron │ ├── function_must_use_added.ron │ ├── function_must_use_removed.ron │ ├── function_no_longer_unsafe.ron │ ├── function_now_const.ron │ ├── function_now_doc_hidden.ron │ ├── function_now_returns_unit.ron │ ├── function_parameter_count_changed.ron │ ├── function_requires_different_const_generic_params.ron │ ├── function_requires_different_generic_type_params.ron │ ├── function_unsafe_added.ron │ ├── global_value_marked_deprecated.ron │ ├── inherent_associated_const_now_doc_hidden.ron │ ├── inherent_associated_pub_const_missing.ron │ ├── inherent_method_changed_abi.ron │ ├── inherent_method_const_generic_reordered.ron │ ├── inherent_method_const_removed.ron │ ├── inherent_method_generic_type_reordered.ron │ ├── inherent_method_missing.ron │ ├── inherent_method_must_use_added.ron │ ├── inherent_method_must_use_removed.ron │ ├── inherent_method_no_longer_unwind.ron │ ├── inherent_method_now_doc_hidden.ron │ ├── inherent_method_now_returns_unit.ron │ ├── inherent_method_now_unwind.ron │ ├── inherent_method_unsafe_added.ron │ ├── macro_marked_deprecated.ron │ ├── macro_no_longer_exported.ron │ ├── macro_now_doc_hidden.ron │ ├── method_export_name_changed.ron │ ├── method_no_longer_has_receiver.ron │ ├── method_parameter_count_changed.ron │ ├── method_receiver_mut_ref_became_owned.ron │ ├── method_receiver_ref_became_mut.ron │ ├── method_receiver_ref_became_owned.ron │ ├── method_receiver_type_changed.ron │ ├── method_requires_different_const_generic_params.ron │ ├── method_requires_different_generic_type_params.ron │ ├── module_missing.ron │ ├── non_exhaustive_enum_added.ron │ ├── non_exhaustive_struct_changed_type.ron │ ├── partial_ord_enum_struct_variant_fields_reordered.ron │ ├── partial_ord_enum_variants_reordered.ron │ ├── partial_ord_struct_fields_reordered.ron │ ├── proc_macro_marked_deprecated.ron │ ├── proc_macro_now_doc_hidden.ron │ ├── pub_api_sealed_trait_became_unconditionally_sealed.ron │ ├── pub_api_sealed_trait_became_unsealed.ron │ ├── pub_api_sealed_trait_method_receiver_added.ron │ ├── pub_api_sealed_trait_method_receiver_mut_ref_became_ref.ron │ ├── pub_api_sealed_trait_method_return_value_added.ron │ ├── pub_api_sealed_trait_method_target_feature_removed.ron │ ├── pub_const_added.ron │ ├── pub_module_level_const_missing.ron │ ├── pub_module_level_const_now_doc_hidden.ron │ ├── pub_static_added.ron │ ├── pub_static_missing.ron │ ├── pub_static_mut_now_immutable.ron │ ├── pub_static_now_doc_hidden.ron │ ├── pub_static_now_mutable.ron │ ├── repr_align_added.ron │ ├── repr_align_changed.ron │ ├── repr_align_removed.ron │ ├── repr_c_enum_struct_variant_fields_reordered.ron │ ├── repr_c_plain_struct_fields_reordered.ron │ ├── repr_c_removed.ron │ ├── repr_packed_added.ron │ ├── repr_packed_changed.ron │ ├── repr_packed_removed.ron │ ├── safe_function_requires_more_target_features.ron │ ├── safe_function_target_feature_added.ron │ ├── safe_inherent_method_requires_more_target_features.ron │ ├── safe_inherent_method_target_feature_added.ron │ ├── sized_impl_removed.ron │ ├── static_became_unsafe.ron │ ├── struct_field_marked_deprecated.ron │ ├── struct_marked_non_exhaustive.ron │ ├── struct_missing.ron │ ├── struct_must_use_added.ron │ ├── struct_must_use_removed.ron │ ├── struct_now_doc_hidden.ron │ ├── struct_pub_field_missing.ron │ ├── struct_pub_field_now_doc_hidden.ron │ ├── struct_repr_transparent_removed.ron │ ├── struct_with_no_pub_fields_changed_type.ron │ ├── struct_with_pub_fields_changed_type.ron │ ├── trait_added_supertrait.ron │ ├── trait_allows_fewer_const_generic_params.ron │ ├── trait_allows_fewer_generic_type_params.ron │ ├── trait_associated_const_added.ron │ ├── trait_associated_const_default_removed.ron │ ├── trait_associated_const_marked_deprecated.ron │ ├── trait_associated_const_now_doc_hidden.ron │ ├── trait_associated_type_added.ron │ ├── trait_associated_type_default_removed.ron │ ├── trait_associated_type_marked_deprecated.ron │ ├── trait_associated_type_now_doc_hidden.ron │ ├── trait_const_generic_reordered.ron │ ├── trait_generic_type_reordered.ron │ ├── trait_marked_deprecated.ron │ ├── trait_method_added.ron │ ├── trait_method_changed_abi.ron │ ├── trait_method_const_generic_reordered.ron │ ├── trait_method_default_impl_removed.ron │ ├── trait_method_generic_type_reordered.ron │ ├── trait_method_marked_deprecated.ron │ ├── trait_method_missing.ron │ ├── trait_method_no_longer_has_receiver.ron │ ├── trait_method_no_longer_unwind.ron │ ├── trait_method_now_doc_hidden.ron │ ├── trait_method_now_returns_unit.ron │ ├── trait_method_now_unwind.ron │ ├── trait_method_parameter_count_changed.ron │ ├── trait_method_receiver_added.ron │ ├── trait_method_receiver_mut_ref_became_owned.ron │ ├── trait_method_receiver_mut_ref_became_ref.ron │ ├── trait_method_receiver_owned_became_mut_ref.ron │ ├── trait_method_receiver_owned_became_ref.ron │ ├── trait_method_receiver_ref_became_mut.ron │ ├── trait_method_receiver_ref_became_owned.ron │ ├── trait_method_receiver_type_changed.ron │ ├── trait_method_requires_different_const_generic_params.ron │ ├── trait_method_requires_different_generic_type_params.ron │ ├── trait_method_return_value_added.ron │ ├── trait_method_target_feature_removed.ron │ ├── trait_method_unsafe_added.ron │ ├── trait_method_unsafe_removed.ron │ ├── trait_mismatched_generic_lifetimes.ron │ ├── trait_missing.ron │ ├── trait_must_use_added.ron │ ├── trait_must_use_removed.ron │ ├── trait_newly_sealed.ron │ ├── trait_no_longer_dyn_compatible.ron │ ├── trait_now_doc_hidden.ron │ ├── trait_removed_associated_constant.ron │ ├── trait_removed_associated_type.ron │ ├── trait_removed_supertrait.ron │ ├── trait_requires_more_const_generic_params.ron │ ├── trait_requires_more_generic_type_params.ron │ ├── trait_unsafe_added.ron │ ├── trait_unsafe_removed.ron │ ├── tuple_struct_to_plain_struct.ron │ ├── type_allows_fewer_const_generic_params.ron │ ├── type_allows_fewer_generic_type_params.ron │ ├── type_associated_const_marked_deprecated.ron │ ├── type_const_generic_reordered.ron │ ├── type_generic_type_reordered.ron │ ├── type_marked_deprecated.ron │ ├── type_method_marked_deprecated.ron │ ├── type_mismatched_generic_lifetimes.ron │ ├── type_requires_more_const_generic_params.ron │ ├── type_requires_more_generic_type_params.ron │ ├── unconditionally_sealed_trait_became_pub_api_sealed.ron │ ├── unconditionally_sealed_trait_became_unsealed.ron │ ├── union_added.ron │ ├── union_field_added_with_all_pub_fields.ron │ ├── union_field_added_with_non_pub_fields.ron │ ├── union_field_missing.ron │ ├── union_missing.ron │ ├── union_must_use_added.ron │ ├── union_must_use_removed.ron │ ├── union_now_doc_hidden.ron │ ├── union_pub_field_now_doc_hidden.ron │ ├── unit_struct_changed_kind.ron │ ├── unsafe_function_requires_more_target_features.ron │ ├── unsafe_function_target_feature_added.ron │ ├── unsafe_inherent_method_requires_more_target_features.ron │ ├── unsafe_inherent_method_target_feature_added.ron │ ├── unsafe_trait_method_requires_more_target_features.ron │ └── unsafe_trait_method_target_feature_added.ron ├── main.rs ├── manifest.rs ├── query.rs ├── rustdoc_gen.rs ├── snapshot_tests.rs ├── templating.rs ├── util.rs └── witness_gen.rs ├── test_crates ├── .gitignore ├── AGENTS.md ├── README.md ├── associated_items_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── async_impl_future_equivalence │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── attribute_proc_macro_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── auto_trait_impl_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── bin_target_only │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── broken_rustdoc │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── cfg_conditional_compilation │ ├── new │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ └── lib.rs ├── constructible_struct_adds_field │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── constructible_struct_adds_private_field │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── counterexample_for_ignoring_doc_hidden_items │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── crate_in_workspace │ ├── Cargo.toml │ ├── lib_crate │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── non_lib_crate │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs ├── declarative_macro_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── derive_helper_attr_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── derive_proc_macro_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── derive_trait_impl_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── doc_false_lib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── dylib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── enum_discriminant_no_longer_defined │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_no_longer_non_exhaustive │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_no_repr_variant_discriminant_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_non_exhaustive_struct_variant_field_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_non_exhaustive_tuple_variant_changed_kind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_non_exhaustive_tuple_variant_field_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_repr_int_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_repr_int_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_repr_int_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_repr_transparent_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_repr_variant_discriminant_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_field_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_variant_changed_kind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_variant_field_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_variant_field_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_variant_field_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_struct_variant_field_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_tuple_variant_changed_kind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_tuple_variant_field_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_tuple_variant_field_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_tuple_variant_field_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_tuple_variant_field_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_unit_variant_changed_kind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_variant_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_variant_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_variant_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_variant_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── enum_variant_no_longer_non_exhaustive │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── exhaustive_enum_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── exported_function_changed_abi │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── exported_function_changes │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── feature_flags_validation │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── feature_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── feature_not_enabled_by_default │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── features_no_default │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── features_simple │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_abi_no_longer_unwind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_changed_abi │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_const_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_export_name_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_feature_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_generics_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_like_proc_macro_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_no_longer_unsafe │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_now_const │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_now_returns_unit │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_requires_different_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_requires_different_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── function_unsafe_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── global_value_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── infinite_importable_paths │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_associated_const_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_associated_pub_const_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_method_const_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_method_generics_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_method_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_method_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enum_inherent_method_must_use_added.rs │ │ │ ├── item_type_changed_inherent_method_must_use_added.rs │ │ │ ├── lib.rs │ │ │ ├── struct_inherent_method_must_use_added.rs │ │ │ └── union_inherent_method_must_use_added.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enum_inherent_method_must_use_added.rs │ │ ├── item_type_changed_inherent_method_must_use_added.rs │ │ ├── lib.rs │ │ ├── struct_inherent_method_must_use_added.rs │ │ └── union_inherent_method_must_use_added.rs ├── inherent_method_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enum_inherent_method_must_use_removed.rs │ │ │ ├── item_type_changed_inherent_method_must_use_removed.rs │ │ │ ├── lib.rs │ │ │ ├── struct_inherent_method_must_use_removed.rs │ │ │ └── union_inherent_method_must_use_removed.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enum_inherent_method_must_use_removed.rs │ │ ├── item_type_changed_inherent_method_must_use_removed.rs │ │ ├── lib.rs │ │ ├── struct_inherent_method_must_use_removed.rs │ │ └── union_inherent_method_must_use_removed.rs ├── inherent_method_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── doc_hidden_struct_inherent_method_now_doc_hidden.rs │ │ │ ├── enum_inherent_method_now_doc_hidden.rs │ │ │ ├── lib.rs │ │ │ ├── struct_and_inherent_method_now_doc_hidden.rs │ │ │ ├── struct_inherent_method_now_doc_hidden.rs │ │ │ └── union_inherent_method_now_doc_hidden.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── doc_hidden_struct_inherent_method_now_doc_hidden.rs │ │ ├── enum_inherent_method_now_doc_hidden.rs │ │ ├── lib.rs │ │ ├── struct_and_inherent_method_now_doc_hidden.rs │ │ ├── struct_inherent_method_now_doc_hidden.rs │ │ └── union_inherent_method_now_doc_hidden.rs ├── inherent_method_now_returns_unit │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── inherent_method_unsafe_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── item_relocation │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── lib-target-with-dashes │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── macro_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── macro_no_longer_exported │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── macro_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── manifest_tests │ ├── README.md │ ├── allow │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── multiple_ambiguous_package_name_definitions │ │ ├── Cargo.toml │ │ ├── nested │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── src │ │ │ └── lib.rs │ ├── no_lib_targets │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ └── bin_only │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ └── bin_only │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── only_read_new_manifest │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── only_warnings │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── workspace_all_publish_false │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ ├── a │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── b │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ ├── a │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── b │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── workspace_baseline_compile_error │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ ├── error │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── no-error │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ ├── error │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── no-error │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── workspace_baseline_conditional_compile_error │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ ├── error │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── no-error │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ ├── error │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── no-error │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── workspace_key_override │ │ ├── new │ │ │ ├── Cargo.toml │ │ │ ├── both_missing │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── cargo_true │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── metadata_true │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── old │ │ │ ├── Cargo.toml │ │ │ ├── both_missing │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ ├── cargo_true │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── metadata_true │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ └── workspace_overrides │ │ ├── new │ │ ├── Cargo.toml │ │ └── pkg │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ │ └── old │ │ ├── Cargo.toml │ │ └── pkg │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── method_export_name_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── method_moved_to_trait_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enum_method_moved_to_trait_must_use_added.rs │ │ │ ├── lib.rs │ │ │ ├── struct_method_moved_to_trait_must_use_added.rs │ │ │ └── union_method_moved_to_trait_must_use_added.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enum_method_moved_to_trait_must_use_added.rs │ │ ├── lib.rs │ │ ├── struct_method_moved_to_trait_must_use_added.rs │ │ └── union_method_moved_to_trait_must_use_added.rs ├── method_receiver_changes │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── method_requires_different_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── method_requires_different_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── module_contents_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── module_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── move_item_and_reexport │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── non_exhaustive │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── non_exhaustive_enum_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── non_exhaustive_struct_changed_type │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── nonbreaking_item_rename │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── parameter_count_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── partial_ord_enum_struct_variant_fields_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── partial_ord_enum_variants_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── partial_ord_struct_fields_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── proc_macro_crate │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── proc_macro_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── proc_macro_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_api_sealed_trait_became_unconditionally_sealed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_api_sealed_trait_became_unsealed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_api_sealed_trait_method_return_value_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_const_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_module_level_const_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_module_level_const_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_static_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_static_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_static_mut_now_immutable │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_static_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_static_now_mutable │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── pub_use_handling │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── inner.rs │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── inner.rs │ │ └── lib.rs ├── renamed_lib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── repr_align_added_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_align_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_c_enum_struct_variant_fields_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_c_plain_struct_fields_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_c_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_packed_added_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── repr_packed_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── rlib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── safe_function_requires_more_target_features │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── safe_function_target_feature_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── safe_inherent_method_requires_more_target_features │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── safe_inherent_method_target_feature_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── safe_vs_unsafe_extern_fn │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── semver_trick_self_referential │ ├── future │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── sized_impl_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── static_became_unsafe │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── staticlib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── struct_becomes_enum │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_field_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_field_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_pub_field_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_pub_field_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_repr_transparent_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── struct_with_no_pub_fields_changed_type │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── switch_away_from_reexport_as_underscore │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── switch_to_reexport_as_underscore │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── target_specific_dependencies │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── template │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_added_supertrait │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_allows_fewer_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_allows_fewer_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_const_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_const_default_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_const_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_const_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_type_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_type_default_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_type_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_type_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_associated_type_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_generics_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_items_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_default_impl_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_generics_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_now_returns_unit │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_parameter_count_changed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_receiver_changes │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_receiver_sealedness │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_requires_different_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_requires_different_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_return_value_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_target_feature_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_unsafe_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_method_unsafe_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_mismatched_generic_lifetimes │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_missing_with_major_bump │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_newly_sealed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_no_longer_dyn_compatible │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_removed_associated_constant │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_removed_supertrait │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_requires_more_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_requires_more_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_unsafe_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── trait_unsafe_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── traits_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── tuple_struct_to_plain_struct │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_allows_fewer_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_allows_fewer_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_associated_const_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enums.rs │ │ │ ├── lib.rs │ │ │ ├── structs.rs │ │ │ └── unions.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enums.rs │ │ ├── lib.rs │ │ ├── structs.rs │ │ └── unions.rs ├── type_generics_reordered │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_hidden_from_public_api │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enums.rs │ │ │ ├── lib.rs │ │ │ ├── structs.rs │ │ │ └── unions.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enums.rs │ │ ├── lib.rs │ │ ├── structs.rs │ │ └── unions.rs ├── type_method_marked_deprecated │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enums.rs │ │ │ ├── lib.rs │ │ │ ├── structs.rs │ │ │ └── unions.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ ├── enums.rs │ │ ├── lib.rs │ │ ├── structs.rs │ │ └── unions.rs ├── type_mismatched_generic_lifetimes │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_requires_more_const_generic_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── type_requires_more_generic_type_params │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unconditionally_sealed_trait_became_pub_api_sealed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unconditionally_sealed_trait_became_unsealed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_field_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_field_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_missing │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_must_use_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_must_use_removed │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── union_pub_field_now_doc_hidden │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unit_struct_changed_kind │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unsafe_function_requires_more_target_features │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unsafe_function_target_feature_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unsafe_inherent_method_requires_more_target_features │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unsafe_inherent_method_target_feature_added │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── unsafe_trait_method_requires_more_target_features │ ├── new │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── old │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs └── unsafe_trait_method_target_feature_added │ ├── new │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ └── old │ ├── Cargo.toml │ └── src │ └── lib.rs ├── test_outputs ├── integration_snapshots__bugreport.snap ├── integration_snapshots__cfg_conditional_compilation.snap ├── integration_snapshots__cfg_conditional_compilation_without_cfg_set.snap ├── integration_snapshots__unstable_options_without_flag.snap ├── integration_snapshots__z_help.snap ├── query_execution │ ├── attribute_proc_macro_missing.snap │ ├── auto_trait_impl_removed.snap │ ├── constructible_struct_adds_field.snap │ ├── constructible_struct_adds_private_field.snap │ ├── constructible_struct_changed_type.snap │ ├── declarative_macro_missing.snap │ ├── derive_helper_attr_removed.snap │ ├── derive_proc_macro_missing.snap │ ├── derive_trait_impl_removed.snap │ ├── enum_discriminants_undefined_non_exhaustive_variant.snap │ ├── enum_discriminants_undefined_non_unit_variant.snap │ ├── enum_marked_non_exhaustive.snap │ ├── enum_missing.snap │ ├── enum_must_use_added.snap │ ├── enum_must_use_removed.snap │ ├── enum_no_longer_non_exhaustive.snap │ ├── enum_no_repr_variant_discriminant_changed.snap │ ├── enum_non_exhaustive_struct_variant_field_added.snap │ ├── enum_non_exhaustive_tuple_variant_changed_kind.snap │ ├── enum_non_exhaustive_tuple_variant_field_added.snap │ ├── enum_now_doc_hidden.snap │ ├── enum_repr_int_added.snap │ ├── enum_repr_int_changed.snap │ ├── enum_repr_int_removed.snap │ ├── enum_repr_transparent_removed.snap │ ├── enum_repr_variant_discriminant_changed.snap │ ├── enum_struct_variant_changed_kind.snap │ ├── enum_struct_variant_field_added.snap │ ├── enum_struct_variant_field_marked_deprecated.snap │ ├── enum_struct_variant_field_missing.snap │ ├── enum_struct_variant_field_now_doc_hidden.snap │ ├── enum_tuple_variant_changed_kind.snap │ ├── enum_tuple_variant_field_added.snap │ ├── enum_tuple_variant_field_marked_deprecated.snap │ ├── enum_tuple_variant_field_missing.snap │ ├── enum_tuple_variant_field_now_doc_hidden.snap │ ├── enum_unit_variant_changed_kind.snap │ ├── enum_variant_added.snap │ ├── enum_variant_marked_deprecated.snap │ ├── enum_variant_marked_non_exhaustive.snap │ ├── enum_variant_missing.snap │ ├── enum_variant_no_longer_non_exhaustive.snap │ ├── exhaustive_enum_added.snap │ ├── exported_function_abi_no_longer_unwind.snap │ ├── exported_function_abi_now_unwind.snap │ ├── exported_function_changed_abi.snap │ ├── exported_function_now_returns_unit.snap │ ├── exported_function_parameter_count_changed.snap │ ├── exported_function_requires_more_target_features.snap │ ├── exported_function_target_feature_added.snap │ ├── feature_missing.snap │ ├── feature_not_enabled_by_default.snap │ ├── function_abi_no_longer_unwind.snap │ ├── function_abi_now_unwind.snap │ ├── function_changed_abi.snap │ ├── function_const_generic_reordered.snap │ ├── function_const_removed.snap │ ├── function_export_name_changed.snap │ ├── function_generic_type_reordered.snap │ ├── function_like_proc_macro_missing.snap │ ├── function_marked_deprecated.snap │ ├── function_missing.snap │ ├── function_must_use_added.snap │ ├── function_must_use_removed.snap │ ├── function_no_longer_unsafe.snap │ ├── function_now_const.snap │ ├── function_now_doc_hidden.snap │ ├── function_now_returns_unit.snap │ ├── function_parameter_count_changed.snap │ ├── function_requires_different_const_generic_params.snap │ ├── function_requires_different_generic_type_params.snap │ ├── function_unsafe_added.snap │ ├── global_value_marked_deprecated.snap │ ├── inherent_associated_const_now_doc_hidden.snap │ ├── inherent_associated_pub_const_missing.snap │ ├── inherent_method_changed_abi.snap │ ├── inherent_method_const_generic_reordered.snap │ ├── inherent_method_const_removed.snap │ ├── inherent_method_generic_type_reordered.snap │ ├── inherent_method_missing.snap │ ├── inherent_method_must_use_added.snap │ ├── inherent_method_must_use_removed.snap │ ├── inherent_method_no_longer_unwind.snap │ ├── inherent_method_now_doc_hidden.snap │ ├── inherent_method_now_returns_unit.snap │ ├── inherent_method_now_unwind.snap │ ├── inherent_method_unsafe_added.snap │ ├── macro_marked_deprecated.snap │ ├── macro_no_longer_exported.snap │ ├── macro_now_doc_hidden.snap │ ├── method_export_name_changed.snap │ ├── method_no_longer_has_receiver.snap │ ├── method_parameter_count_changed.snap │ ├── method_receiver_mut_ref_became_owned.snap │ ├── method_receiver_ref_became_mut.snap │ ├── method_receiver_ref_became_owned.snap │ ├── method_receiver_type_changed.snap │ ├── method_requires_different_const_generic_params.snap │ ├── method_requires_different_generic_type_params.snap │ ├── module_missing.snap │ ├── non_exhaustive_enum_added.snap │ ├── non_exhaustive_struct_changed_type.snap │ ├── partial_ord_enum_struct_variant_fields_reordered.snap │ ├── partial_ord_enum_variants_reordered.snap │ ├── partial_ord_struct_fields_reordered.snap │ ├── proc_macro_marked_deprecated.snap │ ├── proc_macro_now_doc_hidden.snap │ ├── pub_api_sealed_trait_became_unconditionally_sealed.snap │ ├── pub_api_sealed_trait_became_unsealed.snap │ ├── pub_api_sealed_trait_method_receiver_added.snap │ ├── pub_api_sealed_trait_method_receiver_mut_ref_became_ref.snap │ ├── pub_api_sealed_trait_method_return_value_added.snap │ ├── pub_api_sealed_trait_method_target_feature_removed.snap │ ├── pub_const_added.snap │ ├── pub_module_level_const_missing.snap │ ├── pub_module_level_const_now_doc_hidden.snap │ ├── pub_static_added.snap │ ├── pub_static_missing.snap │ ├── pub_static_mut_now_immutable.snap │ ├── pub_static_now_doc_hidden.snap │ ├── pub_static_now_mutable.snap │ ├── repr_align_added.snap │ ├── repr_align_changed.snap │ ├── repr_align_removed.snap │ ├── repr_c_enum_struct_variant_fields_reordered.snap │ ├── repr_c_plain_struct_fields_reordered.snap │ ├── repr_c_removed.snap │ ├── repr_packed_added.snap │ ├── repr_packed_changed.snap │ ├── repr_packed_removed.snap │ ├── safe_function_requires_more_target_features.snap │ ├── safe_function_target_feature_added.snap │ ├── safe_inherent_method_requires_more_target_features.snap │ ├── safe_inherent_method_target_feature_added.snap │ ├── sized_impl_removed.snap │ ├── static_became_unsafe.snap │ ├── struct_field_marked_deprecated.snap │ ├── struct_marked_non_exhaustive.snap │ ├── struct_missing.snap │ ├── struct_must_use_added.snap │ ├── struct_must_use_removed.snap │ ├── struct_now_doc_hidden.snap │ ├── struct_pub_field_missing.snap │ ├── struct_pub_field_now_doc_hidden.snap │ ├── struct_repr_transparent_removed.snap │ ├── struct_with_no_pub_fields_changed_type.snap │ ├── struct_with_pub_fields_changed_type.snap │ ├── trait_added_supertrait.snap │ ├── trait_allows_fewer_const_generic_params.snap │ ├── trait_allows_fewer_generic_type_params.snap │ ├── trait_associated_const_added.snap │ ├── trait_associated_const_default_removed.snap │ ├── trait_associated_const_marked_deprecated.snap │ ├── trait_associated_const_now_doc_hidden.snap │ ├── trait_associated_type_added.snap │ ├── trait_associated_type_default_removed.snap │ ├── trait_associated_type_marked_deprecated.snap │ ├── trait_associated_type_now_doc_hidden.snap │ ├── trait_const_generic_reordered.snap │ ├── trait_generic_type_reordered.snap │ ├── trait_marked_deprecated.snap │ ├── trait_method_added.snap │ ├── trait_method_changed_abi.snap │ ├── trait_method_const_generic_reordered.snap │ ├── trait_method_default_impl_removed.snap │ ├── trait_method_generic_type_reordered.snap │ ├── trait_method_marked_deprecated.snap │ ├── trait_method_missing.snap │ ├── trait_method_no_longer_has_receiver.snap │ ├── trait_method_no_longer_unwind.snap │ ├── trait_method_now_doc_hidden.snap │ ├── trait_method_now_returns_unit.snap │ ├── trait_method_now_unwind.snap │ ├── trait_method_parameter_count_changed.snap │ ├── trait_method_receiver_added.snap │ ├── trait_method_receiver_mut_ref_became_owned.snap │ ├── trait_method_receiver_mut_ref_became_ref.snap │ ├── trait_method_receiver_owned_became_mut_ref.snap │ ├── trait_method_receiver_owned_became_ref.snap │ ├── trait_method_receiver_ref_became_mut.snap │ ├── trait_method_receiver_ref_became_owned.snap │ ├── trait_method_receiver_type_changed.snap │ ├── trait_method_requires_different_const_generic_params.snap │ ├── trait_method_requires_different_generic_type_params.snap │ ├── trait_method_return_value_added.snap │ ├── trait_method_target_feature_removed.snap │ ├── trait_method_unsafe_added.snap │ ├── trait_method_unsafe_removed.snap │ ├── trait_mismatched_generic_lifetimes.snap │ ├── trait_missing.snap │ ├── trait_must_use_added.snap │ ├── trait_must_use_removed.snap │ ├── trait_newly_sealed.snap │ ├── trait_no_longer_dyn_compatible.snap │ ├── trait_now_doc_hidden.snap │ ├── trait_removed_associated_constant.snap │ ├── trait_removed_associated_type.snap │ ├── trait_removed_supertrait.snap │ ├── trait_requires_more_const_generic_params.snap │ ├── trait_requires_more_generic_type_params.snap │ ├── trait_unsafe_added.snap │ ├── trait_unsafe_removed.snap │ ├── tuple_struct_to_plain_struct.snap │ ├── type_allows_fewer_const_generic_params.snap │ ├── type_allows_fewer_generic_type_params.snap │ ├── type_associated_const_marked_deprecated.snap │ ├── type_const_generic_reordered.snap │ ├── type_generic_type_reordered.snap │ ├── type_marked_deprecated.snap │ ├── type_method_marked_deprecated.snap │ ├── type_mismatched_generic_lifetimes.snap │ ├── type_requires_more_const_generic_params.snap │ ├── type_requires_more_generic_type_params.snap │ ├── unconditionally_sealed_trait_became_pub_api_sealed.snap │ ├── unconditionally_sealed_trait_became_unsealed.snap │ ├── union_added.snap │ ├── union_field_added_with_all_pub_fields.snap │ ├── union_field_added_with_non_pub_fields.snap │ ├── union_field_missing.snap │ ├── union_missing.snap │ ├── union_must_use_added.snap │ ├── union_must_use_removed.snap │ ├── union_now_doc_hidden.snap │ ├── union_pub_field_now_doc_hidden.snap │ ├── unit_struct_changed_kind.snap │ ├── unsafe_function_requires_more_target_features.snap │ ├── unsafe_function_target_feature_added.snap │ ├── unsafe_inherent_method_requires_more_target_features.snap │ ├── unsafe_inherent_method_target_feature_added.snap │ ├── unsafe_trait_method_requires_more_target_features.snap │ └── unsafe_trait_method_target_feature_added.snap ├── snapshot_tests │ ├── cargo_semver_checks__snapshot_tests__multiple_ambiguous_package_name_definitions-input.snap │ ├── cargo_semver_checks__snapshot_tests__multiple_ambiguous_package_name_definitions-output.snap │ ├── cargo_semver_checks__snapshot_tests__semver_trick_self_referential-input.snap │ ├── cargo_semver_checks__snapshot_tests__semver_trick_self_referential-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_all_publish_false-input.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_all_publish_false-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_baseline_compile_error-input.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_baseline_compile_error-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_baseline_conditional_compile_error-input.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_baseline_conditional_compile_error-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_no_lib_targets-input.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_no_lib_targets-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_publish_false_explicit-input.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_publish_false_explicit-output.snap │ ├── cargo_semver_checks__snapshot_tests__workspace_publish_false_workspace_flag-input.snap │ └── cargo_semver_checks__snapshot_tests__workspace_publish_false_workspace_flag-output.snap └── witnesses │ ├── declarative_macro_missing.snap │ ├── enum_struct_variant_field_added.snap │ ├── enum_struct_variant_field_marked_deprecated.snap │ ├── enum_struct_variant_field_missing.snap │ ├── enum_tuple_variant_changed_kind.snap │ ├── enum_tuple_variant_field_added.snap │ ├── enum_tuple_variant_field_marked_deprecated.snap │ ├── enum_tuple_variant_field_missing.snap │ ├── enum_variant_added.snap │ ├── enum_variant_missing.snap │ ├── function_const_removed.snap │ ├── function_marked_deprecated.snap │ ├── function_missing.snap │ ├── function_parameter_count_changed.snap │ ├── function_unsafe_added.snap │ ├── macro_marked_deprecated.snap │ ├── macro_no_longer_exported.snap │ ├── module_missing.snap │ ├── non_exhaustive_struct_changed_type.snap │ ├── struct_with_no_pub_fields_changed_type.snap │ └── trait_unsafe_added.snap └── tests ├── color_config.rs ├── feature_config.rs ├── integration_snapshots.rs ├── lib_tests.rs ├── lint_config.rs ├── passing_manifest_or_directory.rs ├── rustdoc_edge_cases.rs ├── specified_target.rs └── verify_binary_contains_lints.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-false-positive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/ISSUE_TEMPLATE/1-false-positive.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-false-negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/ISSUE_TEMPLATE/2-false-negative.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/ISSUE_TEMPLATE/3-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/ISSUE_TEMPLATE/4-feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/add_new_rust_to_matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/add_new_rust_to_matrix.yml -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/lint_fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/lint_fix.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update_snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.github/workflows/update_snapshots.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/README.md -------------------------------------------------------------------------------- /brand/Extra Logo Pincers and Box.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Extra Logo Pincers and Box.ai -------------------------------------------------------------------------------- /brand/Extra Logo Pincers and Box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Extra Logo Pincers and Box.jpg -------------------------------------------------------------------------------- /brand/Extra Logo Pincers and Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Extra Logo Pincers and Box.png -------------------------------------------------------------------------------- /brand/Icon Blue.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Blue.ai -------------------------------------------------------------------------------- /brand/Icon Blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Blue.jpg -------------------------------------------------------------------------------- /brand/Icon Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Blue.png -------------------------------------------------------------------------------- /brand/Icon Orange.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Orange.ai -------------------------------------------------------------------------------- /brand/Icon Orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Orange.jpg -------------------------------------------------------------------------------- /brand/Icon Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon Orange.png -------------------------------------------------------------------------------- /brand/Icon White.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon White.ai -------------------------------------------------------------------------------- /brand/Icon White.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon White.jpg -------------------------------------------------------------------------------- /brand/Icon White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Icon White.png -------------------------------------------------------------------------------- /brand/Logo 1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 1.ai -------------------------------------------------------------------------------- /brand/Logo 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 1.jpg -------------------------------------------------------------------------------- /brand/Logo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 1.png -------------------------------------------------------------------------------- /brand/Logo 2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 2.ai -------------------------------------------------------------------------------- /brand/Logo 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 2.jpg -------------------------------------------------------------------------------- /brand/Logo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/Logo 2.png -------------------------------------------------------------------------------- /brand/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/brand/banner.png -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/funding.json -------------------------------------------------------------------------------- /scripts/download_prebuilt_test_rustdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/download_prebuilt_test_rustdocs.sh -------------------------------------------------------------------------------- /scripts/get_current_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/get_current_version.sh -------------------------------------------------------------------------------- /scripts/hash_test_rustdocs_inputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/hash_test_rustdocs_inputs.sh -------------------------------------------------------------------------------- /scripts/is_version_already_uploaded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/is_version_already_uploaded.sh -------------------------------------------------------------------------------- /scripts/make_new_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/make_new_lint.sh -------------------------------------------------------------------------------- /scripts/make_new_test_crate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/make_new_test_crate.sh -------------------------------------------------------------------------------- /scripts/regenerate_test_rustdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/regenerate_test_rustdocs.sh -------------------------------------------------------------------------------- /scripts/rename_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/scripts/rename_lint.sh -------------------------------------------------------------------------------- /src/callbacks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/callbacks.rs -------------------------------------------------------------------------------- /src/check_release.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/check_release.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/data_generation/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/data_generation/error.rs -------------------------------------------------------------------------------- /src/data_generation/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/data_generation/generate.rs -------------------------------------------------------------------------------- /src/data_generation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/data_generation/mod.rs -------------------------------------------------------------------------------- /src/data_generation/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/data_generation/progress.rs -------------------------------------------------------------------------------- /src/data_generation/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/data_generation/request.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lints/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/AGENTS.md -------------------------------------------------------------------------------- /src/lints/attribute_proc_macro_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/attribute_proc_macro_missing.ron -------------------------------------------------------------------------------- /src/lints/auto_trait_impl_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/auto_trait_impl_removed.ron -------------------------------------------------------------------------------- /src/lints/constructible_struct_adds_field.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/constructible_struct_adds_field.ron -------------------------------------------------------------------------------- /src/lints/constructible_struct_adds_private_field.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/constructible_struct_adds_private_field.ron -------------------------------------------------------------------------------- /src/lints/constructible_struct_changed_type.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/constructible_struct_changed_type.ron -------------------------------------------------------------------------------- /src/lints/declarative_macro_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/declarative_macro_missing.ron -------------------------------------------------------------------------------- /src/lints/derive_helper_attr_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/derive_helper_attr_removed.ron -------------------------------------------------------------------------------- /src/lints/derive_proc_macro_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/derive_proc_macro_missing.ron -------------------------------------------------------------------------------- /src/lints/derive_trait_impl_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/derive_trait_impl_removed.ron -------------------------------------------------------------------------------- /src/lints/enum_marked_non_exhaustive.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_marked_non_exhaustive.ron -------------------------------------------------------------------------------- /src/lints/enum_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_missing.ron -------------------------------------------------------------------------------- /src/lints/enum_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/enum_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/enum_no_longer_non_exhaustive.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_no_longer_non_exhaustive.ron -------------------------------------------------------------------------------- /src/lints/enum_no_repr_variant_discriminant_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_no_repr_variant_discriminant_changed.ron -------------------------------------------------------------------------------- /src/lints/enum_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/enum_repr_int_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_repr_int_added.ron -------------------------------------------------------------------------------- /src/lints/enum_repr_int_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_repr_int_changed.ron -------------------------------------------------------------------------------- /src/lints/enum_repr_int_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_repr_int_removed.ron -------------------------------------------------------------------------------- /src/lints/enum_repr_transparent_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_repr_transparent_removed.ron -------------------------------------------------------------------------------- /src/lints/enum_repr_variant_discriminant_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_repr_variant_discriminant_changed.ron -------------------------------------------------------------------------------- /src/lints/enum_struct_variant_changed_kind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_struct_variant_changed_kind.ron -------------------------------------------------------------------------------- /src/lints/enum_struct_variant_field_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_struct_variant_field_added.ron -------------------------------------------------------------------------------- /src/lints/enum_struct_variant_field_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_struct_variant_field_missing.ron -------------------------------------------------------------------------------- /src/lints/enum_struct_variant_field_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_struct_variant_field_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/enum_tuple_variant_changed_kind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_tuple_variant_changed_kind.ron -------------------------------------------------------------------------------- /src/lints/enum_tuple_variant_field_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_tuple_variant_field_added.ron -------------------------------------------------------------------------------- /src/lints/enum_tuple_variant_field_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_tuple_variant_field_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/enum_tuple_variant_field_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_tuple_variant_field_missing.ron -------------------------------------------------------------------------------- /src/lints/enum_tuple_variant_field_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_tuple_variant_field_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/enum_unit_variant_changed_kind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_unit_variant_changed_kind.ron -------------------------------------------------------------------------------- /src/lints/enum_variant_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_variant_added.ron -------------------------------------------------------------------------------- /src/lints/enum_variant_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_variant_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/enum_variant_marked_non_exhaustive.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_variant_marked_non_exhaustive.ron -------------------------------------------------------------------------------- /src/lints/enum_variant_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_variant_missing.ron -------------------------------------------------------------------------------- /src/lints/enum_variant_no_longer_non_exhaustive.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/enum_variant_no_longer_non_exhaustive.ron -------------------------------------------------------------------------------- /src/lints/exhaustive_enum_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exhaustive_enum_added.ron -------------------------------------------------------------------------------- /src/lints/exported_function_abi_no_longer_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_abi_no_longer_unwind.ron -------------------------------------------------------------------------------- /src/lints/exported_function_abi_now_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_abi_now_unwind.ron -------------------------------------------------------------------------------- /src/lints/exported_function_changed_abi.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_changed_abi.ron -------------------------------------------------------------------------------- /src/lints/exported_function_now_returns_unit.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_now_returns_unit.ron -------------------------------------------------------------------------------- /src/lints/exported_function_parameter_count_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_parameter_count_changed.ron -------------------------------------------------------------------------------- /src/lints/exported_function_target_feature_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/exported_function_target_feature_added.ron -------------------------------------------------------------------------------- /src/lints/feature_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/feature_missing.ron -------------------------------------------------------------------------------- /src/lints/feature_not_enabled_by_default.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/feature_not_enabled_by_default.ron -------------------------------------------------------------------------------- /src/lints/function_abi_no_longer_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_abi_no_longer_unwind.ron -------------------------------------------------------------------------------- /src/lints/function_abi_now_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_abi_now_unwind.ron -------------------------------------------------------------------------------- /src/lints/function_changed_abi.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_changed_abi.ron -------------------------------------------------------------------------------- /src/lints/function_const_generic_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_const_generic_reordered.ron -------------------------------------------------------------------------------- /src/lints/function_const_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_const_removed.ron -------------------------------------------------------------------------------- /src/lints/function_export_name_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_export_name_changed.ron -------------------------------------------------------------------------------- /src/lints/function_generic_type_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_generic_type_reordered.ron -------------------------------------------------------------------------------- /src/lints/function_like_proc_macro_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_like_proc_macro_missing.ron -------------------------------------------------------------------------------- /src/lints/function_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/function_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_missing.ron -------------------------------------------------------------------------------- /src/lints/function_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/function_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/function_no_longer_unsafe.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_no_longer_unsafe.ron -------------------------------------------------------------------------------- /src/lints/function_now_const.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_now_const.ron -------------------------------------------------------------------------------- /src/lints/function_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/function_now_returns_unit.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_now_returns_unit.ron -------------------------------------------------------------------------------- /src/lints/function_parameter_count_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_parameter_count_changed.ron -------------------------------------------------------------------------------- /src/lints/function_unsafe_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/function_unsafe_added.ron -------------------------------------------------------------------------------- /src/lints/global_value_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/global_value_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/inherent_associated_const_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_associated_const_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/inherent_associated_pub_const_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_associated_pub_const_missing.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_changed_abi.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_changed_abi.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_const_generic_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_const_generic_reordered.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_const_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_const_removed.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_generic_type_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_generic_type_reordered.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_missing.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_no_longer_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_no_longer_unwind.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_now_returns_unit.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_now_returns_unit.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_now_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_now_unwind.ron -------------------------------------------------------------------------------- /src/lints/inherent_method_unsafe_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/inherent_method_unsafe_added.ron -------------------------------------------------------------------------------- /src/lints/macro_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/macro_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/macro_no_longer_exported.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/macro_no_longer_exported.ron -------------------------------------------------------------------------------- /src/lints/macro_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/macro_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/method_export_name_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_export_name_changed.ron -------------------------------------------------------------------------------- /src/lints/method_no_longer_has_receiver.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_no_longer_has_receiver.ron -------------------------------------------------------------------------------- /src/lints/method_parameter_count_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_parameter_count_changed.ron -------------------------------------------------------------------------------- /src/lints/method_receiver_mut_ref_became_owned.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_receiver_mut_ref_became_owned.ron -------------------------------------------------------------------------------- /src/lints/method_receiver_ref_became_mut.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_receiver_ref_became_mut.ron -------------------------------------------------------------------------------- /src/lints/method_receiver_ref_became_owned.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_receiver_ref_became_owned.ron -------------------------------------------------------------------------------- /src/lints/method_receiver_type_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/method_receiver_type_changed.ron -------------------------------------------------------------------------------- /src/lints/module_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/module_missing.ron -------------------------------------------------------------------------------- /src/lints/non_exhaustive_enum_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/non_exhaustive_enum_added.ron -------------------------------------------------------------------------------- /src/lints/non_exhaustive_struct_changed_type.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/non_exhaustive_struct_changed_type.ron -------------------------------------------------------------------------------- /src/lints/partial_ord_enum_variants_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/partial_ord_enum_variants_reordered.ron -------------------------------------------------------------------------------- /src/lints/partial_ord_struct_fields_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/partial_ord_struct_fields_reordered.ron -------------------------------------------------------------------------------- /src/lints/proc_macro_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/proc_macro_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/proc_macro_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/proc_macro_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/pub_api_sealed_trait_became_unsealed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_api_sealed_trait_became_unsealed.ron -------------------------------------------------------------------------------- /src/lints/pub_api_sealed_trait_method_receiver_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_api_sealed_trait_method_receiver_added.ron -------------------------------------------------------------------------------- /src/lints/pub_const_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_const_added.ron -------------------------------------------------------------------------------- /src/lints/pub_module_level_const_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_module_level_const_missing.ron -------------------------------------------------------------------------------- /src/lints/pub_module_level_const_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_module_level_const_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/pub_static_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_static_added.ron -------------------------------------------------------------------------------- /src/lints/pub_static_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_static_missing.ron -------------------------------------------------------------------------------- /src/lints/pub_static_mut_now_immutable.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_static_mut_now_immutable.ron -------------------------------------------------------------------------------- /src/lints/pub_static_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_static_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/pub_static_now_mutable.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/pub_static_now_mutable.ron -------------------------------------------------------------------------------- /src/lints/repr_align_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_align_added.ron -------------------------------------------------------------------------------- /src/lints/repr_align_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_align_changed.ron -------------------------------------------------------------------------------- /src/lints/repr_align_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_align_removed.ron -------------------------------------------------------------------------------- /src/lints/repr_c_plain_struct_fields_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_c_plain_struct_fields_reordered.ron -------------------------------------------------------------------------------- /src/lints/repr_c_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_c_removed.ron -------------------------------------------------------------------------------- /src/lints/repr_packed_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_packed_added.ron -------------------------------------------------------------------------------- /src/lints/repr_packed_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_packed_changed.ron -------------------------------------------------------------------------------- /src/lints/repr_packed_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/repr_packed_removed.ron -------------------------------------------------------------------------------- /src/lints/safe_function_target_feature_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/safe_function_target_feature_added.ron -------------------------------------------------------------------------------- /src/lints/safe_inherent_method_target_feature_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/safe_inherent_method_target_feature_added.ron -------------------------------------------------------------------------------- /src/lints/sized_impl_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/sized_impl_removed.ron -------------------------------------------------------------------------------- /src/lints/static_became_unsafe.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/static_became_unsafe.ron -------------------------------------------------------------------------------- /src/lints/struct_field_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_field_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/struct_marked_non_exhaustive.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_marked_non_exhaustive.ron -------------------------------------------------------------------------------- /src/lints/struct_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_missing.ron -------------------------------------------------------------------------------- /src/lints/struct_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/struct_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/struct_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/struct_pub_field_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_pub_field_missing.ron -------------------------------------------------------------------------------- /src/lints/struct_pub_field_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_pub_field_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/struct_repr_transparent_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_repr_transparent_removed.ron -------------------------------------------------------------------------------- /src/lints/struct_with_no_pub_fields_changed_type.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_with_no_pub_fields_changed_type.ron -------------------------------------------------------------------------------- /src/lints/struct_with_pub_fields_changed_type.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/struct_with_pub_fields_changed_type.ron -------------------------------------------------------------------------------- /src/lints/trait_added_supertrait.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_added_supertrait.ron -------------------------------------------------------------------------------- /src/lints/trait_allows_fewer_const_generic_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_allows_fewer_const_generic_params.ron -------------------------------------------------------------------------------- /src/lints/trait_allows_fewer_generic_type_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_allows_fewer_generic_type_params.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_const_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_const_added.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_const_default_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_const_default_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_const_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_const_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_const_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_const_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_type_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_type_added.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_type_default_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_type_default_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_type_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_type_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/trait_associated_type_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_associated_type_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/trait_const_generic_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_const_generic_reordered.ron -------------------------------------------------------------------------------- /src/lints/trait_generic_type_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_generic_type_reordered.ron -------------------------------------------------------------------------------- /src/lints/trait_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/trait_method_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_added.ron -------------------------------------------------------------------------------- /src/lints/trait_method_changed_abi.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_changed_abi.ron -------------------------------------------------------------------------------- /src/lints/trait_method_const_generic_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_const_generic_reordered.ron -------------------------------------------------------------------------------- /src/lints/trait_method_default_impl_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_default_impl_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_method_generic_type_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_generic_type_reordered.ron -------------------------------------------------------------------------------- /src/lints/trait_method_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/trait_method_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_missing.ron -------------------------------------------------------------------------------- /src/lints/trait_method_no_longer_has_receiver.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_no_longer_has_receiver.ron -------------------------------------------------------------------------------- /src/lints/trait_method_no_longer_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_no_longer_unwind.ron -------------------------------------------------------------------------------- /src/lints/trait_method_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/trait_method_now_returns_unit.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_now_returns_unit.ron -------------------------------------------------------------------------------- /src/lints/trait_method_now_unwind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_now_unwind.ron -------------------------------------------------------------------------------- /src/lints/trait_method_parameter_count_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_parameter_count_changed.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_added.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_mut_ref_became_owned.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_mut_ref_became_owned.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_mut_ref_became_ref.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_mut_ref_became_ref.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_owned_became_mut_ref.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_owned_became_mut_ref.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_owned_became_ref.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_owned_became_ref.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_ref_became_mut.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_ref_became_mut.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_ref_became_owned.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_ref_became_owned.ron -------------------------------------------------------------------------------- /src/lints/trait_method_receiver_type_changed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_receiver_type_changed.ron -------------------------------------------------------------------------------- /src/lints/trait_method_return_value_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_return_value_added.ron -------------------------------------------------------------------------------- /src/lints/trait_method_target_feature_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_target_feature_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_method_unsafe_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_unsafe_added.ron -------------------------------------------------------------------------------- /src/lints/trait_method_unsafe_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_method_unsafe_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_mismatched_generic_lifetimes.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_mismatched_generic_lifetimes.ron -------------------------------------------------------------------------------- /src/lints/trait_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_missing.ron -------------------------------------------------------------------------------- /src/lints/trait_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/trait_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/trait_newly_sealed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_newly_sealed.ron -------------------------------------------------------------------------------- /src/lints/trait_no_longer_dyn_compatible.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_no_longer_dyn_compatible.ron -------------------------------------------------------------------------------- /src/lints/trait_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/trait_removed_associated_constant.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_removed_associated_constant.ron -------------------------------------------------------------------------------- /src/lints/trait_removed_associated_type.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_removed_associated_type.ron -------------------------------------------------------------------------------- /src/lints/trait_removed_supertrait.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_removed_supertrait.ron -------------------------------------------------------------------------------- /src/lints/trait_requires_more_const_generic_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_requires_more_const_generic_params.ron -------------------------------------------------------------------------------- /src/lints/trait_requires_more_generic_type_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_requires_more_generic_type_params.ron -------------------------------------------------------------------------------- /src/lints/trait_unsafe_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_unsafe_added.ron -------------------------------------------------------------------------------- /src/lints/trait_unsafe_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/trait_unsafe_removed.ron -------------------------------------------------------------------------------- /src/lints/tuple_struct_to_plain_struct.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/tuple_struct_to_plain_struct.ron -------------------------------------------------------------------------------- /src/lints/type_allows_fewer_const_generic_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_allows_fewer_const_generic_params.ron -------------------------------------------------------------------------------- /src/lints/type_allows_fewer_generic_type_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_allows_fewer_generic_type_params.ron -------------------------------------------------------------------------------- /src/lints/type_associated_const_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_associated_const_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/type_const_generic_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_const_generic_reordered.ron -------------------------------------------------------------------------------- /src/lints/type_generic_type_reordered.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_generic_type_reordered.ron -------------------------------------------------------------------------------- /src/lints/type_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/type_method_marked_deprecated.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_method_marked_deprecated.ron -------------------------------------------------------------------------------- /src/lints/type_mismatched_generic_lifetimes.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_mismatched_generic_lifetimes.ron -------------------------------------------------------------------------------- /src/lints/type_requires_more_const_generic_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_requires_more_const_generic_params.ron -------------------------------------------------------------------------------- /src/lints/type_requires_more_generic_type_params.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/type_requires_more_generic_type_params.ron -------------------------------------------------------------------------------- /src/lints/union_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_added.ron -------------------------------------------------------------------------------- /src/lints/union_field_added_with_all_pub_fields.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_field_added_with_all_pub_fields.ron -------------------------------------------------------------------------------- /src/lints/union_field_added_with_non_pub_fields.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_field_added_with_non_pub_fields.ron -------------------------------------------------------------------------------- /src/lints/union_field_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_field_missing.ron -------------------------------------------------------------------------------- /src/lints/union_missing.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_missing.ron -------------------------------------------------------------------------------- /src/lints/union_must_use_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_must_use_added.ron -------------------------------------------------------------------------------- /src/lints/union_must_use_removed.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_must_use_removed.ron -------------------------------------------------------------------------------- /src/lints/union_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/union_pub_field_now_doc_hidden.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/union_pub_field_now_doc_hidden.ron -------------------------------------------------------------------------------- /src/lints/unit_struct_changed_kind.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/unit_struct_changed_kind.ron -------------------------------------------------------------------------------- /src/lints/unsafe_function_target_feature_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/unsafe_function_target_feature_added.ron -------------------------------------------------------------------------------- /src/lints/unsafe_trait_method_target_feature_added.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/lints/unsafe_trait_method_target_feature_added.ron -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/manifest.rs -------------------------------------------------------------------------------- /src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/query.rs -------------------------------------------------------------------------------- /src/rustdoc_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/rustdoc_gen.rs -------------------------------------------------------------------------------- /src/snapshot_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/snapshot_tests.rs -------------------------------------------------------------------------------- /src/templating.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/templating.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/util.rs -------------------------------------------------------------------------------- /src/witness_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/src/witness_gen.rs -------------------------------------------------------------------------------- /test_crates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/.gitignore -------------------------------------------------------------------------------- /test_crates/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/AGENTS.md -------------------------------------------------------------------------------- /test_crates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/README.md -------------------------------------------------------------------------------- /test_crates/associated_items_hidden_from_public_api/new/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub struct Example; 4 | -------------------------------------------------------------------------------- /test_crates/async_impl_future_equivalence/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/async_impl_future_equivalence/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/async_impl_future_equivalence/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/async_impl_future_equivalence/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/async_impl_future_equivalence/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/async_impl_future_equivalence/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/async_impl_future_equivalence/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/async_impl_future_equivalence/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/attribute_proc_macro_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/attribute_proc_macro_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/attribute_proc_macro_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/attribute_proc_macro_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/attribute_proc_macro_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/attribute_proc_macro_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/attribute_proc_macro_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/attribute_proc_macro_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/auto_trait_impl_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/auto_trait_impl_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/auto_trait_impl_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/auto_trait_impl_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/auto_trait_impl_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/auto_trait_impl_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/auto_trait_impl_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/auto_trait_impl_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/bin_target_only/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/bin_target_only/Cargo.toml -------------------------------------------------------------------------------- /test_crates/bin_target_only/src/main.rs: -------------------------------------------------------------------------------- 1 | pub fn main() {} 2 | -------------------------------------------------------------------------------- /test_crates/broken_rustdoc/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/broken_rustdoc/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/broken_rustdoc/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/broken_rustdoc/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/broken_rustdoc/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/broken_rustdoc/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/broken_rustdoc/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/broken_rustdoc/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/new/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/new/build.rs -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/old/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/old/build.rs -------------------------------------------------------------------------------- /test_crates/cfg_conditional_compilation/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/cfg_conditional_compilation/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/crate_in_workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/crate_in_workspace/Cargo.toml -------------------------------------------------------------------------------- /test_crates/crate_in_workspace/lib_crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/crate_in_workspace/lib_crate/Cargo.toml -------------------------------------------------------------------------------- /test_crates/crate_in_workspace/lib_crate/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/crate_in_workspace/non_lib_crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/crate_in_workspace/non_lib_crate/Cargo.toml -------------------------------------------------------------------------------- /test_crates/crate_in_workspace/non_lib_crate/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /test_crates/declarative_macro_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/declarative_macro_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/declarative_macro_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/declarative_macro_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/declarative_macro_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/declarative_macro_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/declarative_macro_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/declarative_macro_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_helper_attr_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_helper_attr_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_helper_attr_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_helper_attr_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_helper_attr_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_helper_attr_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_helper_attr_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_helper_attr_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_proc_macro_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_proc_macro_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_proc_macro_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_proc_macro_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_proc_macro_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_proc_macro_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_proc_macro_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_proc_macro_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_trait_impl_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_trait_impl_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_trait_impl_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_trait_impl_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/derive_trait_impl_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_trait_impl_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/derive_trait_impl_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/derive_trait_impl_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/doc_false_lib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/doc_false_lib_target/Cargo.toml -------------------------------------------------------------------------------- /test_crates/doc_false_lib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/doc_false_lib_target/src/lib.rs -------------------------------------------------------------------------------- /test_crates/dylib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/dylib_target/Cargo.toml -------------------------------------------------------------------------------- /test_crates/dylib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/dylib_target/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_must_use_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_must_use_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_must_use_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_must_use_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_must_use_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_must_use_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_must_use_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_must_use_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_must_use_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_no_longer_non_exhaustive/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_no_longer_non_exhaustive/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_no_longer_non_exhaustive/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_no_longer_non_exhaustive/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_no_longer_non_exhaustive/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_no_longer_non_exhaustive/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_no_longer_non_exhaustive/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_no_longer_non_exhaustive/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_int_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_int_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_int_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_repr_transparent_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_transparent_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_repr_transparent_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_repr_transparent_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_variant_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_variant_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_variant_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_variant_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_variant_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_variant_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/enum_variant_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/enum_variant_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/enum_variant_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/exhaustive_enum_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exhaustive_enum_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/exhaustive_enum_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exhaustive_enum_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/exhaustive_enum_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exhaustive_enum_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/exhaustive_enum_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exhaustive_enum_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/exported_function_changes/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exported_function_changes/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/exported_function_changes/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exported_function_changes/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/exported_function_changes/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exported_function_changes/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/exported_function_changes/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/exported_function_changes/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/feature_flags_validation/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_flags_validation/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/feature_flags_validation/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_flags_validation/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/feature_flags_validation/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_flags_validation/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/feature_flags_validation/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_flags_validation/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/feature_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/feature_missing/new/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/feature_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/feature_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/feature_missing/old/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/feature_not_enabled_by_default/new/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/feature_not_enabled_by_default/old/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/features_no_default/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_no_default/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/features_no_default/new/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub fn function_previously_depending_on_A() {} 4 | -------------------------------------------------------------------------------- /test_crates/features_no_default/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_no_default/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/features_no_default/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_no_default/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/features_simple/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_simple/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/features_simple/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_simple/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/features_simple/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_simple/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/features_simple/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/features_simple/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_changed_abi/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_changed_abi/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_changed_abi/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_changed_abi/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_changed_abi/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_changed_abi/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_changed_abi/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_changed_abi/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_const_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_const_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_const_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_const_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_const_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_const_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_const_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_const_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_feature_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_feature_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_feature_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_feature_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_feature_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_feature_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_feature_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_feature_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_marked_deprecated/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_marked_deprecated/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_marked_deprecated/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_marked_deprecated/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_marked_deprecated/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_marked_deprecated/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_marked_deprecated/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_marked_deprecated/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_must_use_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_must_use_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_must_use_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_must_use_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_must_use_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_must_use_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_must_use_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_must_use_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_must_use_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_no_longer_unsafe/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_no_longer_unsafe/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_no_longer_unsafe/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_no_longer_unsafe/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_no_longer_unsafe/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_no_longer_unsafe/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_no_longer_unsafe/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_no_longer_unsafe/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_const/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_const/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_const/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_const/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_const/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_const/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_const/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_const/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_returns_unit/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_returns_unit/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_returns_unit/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_returns_unit/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_now_returns_unit/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_returns_unit/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_now_returns_unit/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_now_returns_unit/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_unsafe_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_unsafe_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_unsafe_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_unsafe_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/function_unsafe_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_unsafe_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/function_unsafe_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/function_unsafe_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/infinite_importable_paths/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/infinite_importable_paths/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/infinite_importable_paths/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/infinite_importable_paths/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/infinite_importable_paths/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/infinite_importable_paths/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/infinite_importable_paths/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/infinite_importable_paths/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/inherent_method_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/inherent_method_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/inherent_method_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/inherent_method_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/inherent_method_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/inherent_method_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/inherent_method_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/inherent_method_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/item_relocation/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/item_relocation/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/item_relocation/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/item_relocation/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/item_relocation/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/item_relocation/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/item_relocation/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/item_relocation/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/lib-target-with-dashes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/lib-target-with-dashes/Cargo.toml -------------------------------------------------------------------------------- /test_crates/lib-target-with-dashes/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/macro_marked_deprecated/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_marked_deprecated/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_marked_deprecated/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_marked_deprecated/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/macro_marked_deprecated/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_marked_deprecated/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_marked_deprecated/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_marked_deprecated/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/macro_no_longer_exported/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_no_longer_exported/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_no_longer_exported/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_no_longer_exported/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/macro_no_longer_exported/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_no_longer_exported/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_no_longer_exported/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_no_longer_exported/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/macro_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/macro_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/macro_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/macro_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/manifest_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/manifest_tests/README.md -------------------------------------------------------------------------------- /test_crates/manifest_tests/allow/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/manifest_tests/allow/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/manifest_tests/allow/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/manifest_tests/allow/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/manifest_tests/allow/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/manifest_tests/allow/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/manifest_tests/allow/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/manifest_tests/allow/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/manifest_tests/no_lib_targets/new/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = ["bin_only"] 4 | -------------------------------------------------------------------------------- /test_crates/manifest_tests/no_lib_targets/new/bin_only/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /test_crates/manifest_tests/no_lib_targets/old/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = ["bin_only"] 4 | -------------------------------------------------------------------------------- /test_crates/manifest_tests/no_lib_targets/old/bin_only/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /test_crates/manifest_tests/workspace_all_publish_false/new/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = ["a", "b"] 4 | -------------------------------------------------------------------------------- /test_crates/manifest_tests/workspace_all_publish_false/old/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = ["a", "b"] 4 | -------------------------------------------------------------------------------- /test_crates/method_export_name_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_export_name_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/method_export_name_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_export_name_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/method_export_name_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_export_name_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/method_export_name_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_export_name_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/method_receiver_changes/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_receiver_changes/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/method_receiver_changes/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_receiver_changes/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/method_receiver_changes/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_receiver_changes/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/method_receiver_changes/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/method_receiver_changes/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/module_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/module_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/module_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/module_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/module_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/module_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/module_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/module_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/move_item_and_reexport/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/move_item_and_reexport/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/move_item_and_reexport/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/move_item_and_reexport/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/move_item_and_reexport/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/move_item_and_reexport/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/move_item_and_reexport/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/move_item_and_reexport/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/non_exhaustive/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/non_exhaustive/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/non_exhaustive/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/non_exhaustive/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/non_exhaustive_enum_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive_enum_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/non_exhaustive_enum_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive_enum_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/non_exhaustive_enum_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive_enum_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/non_exhaustive_enum_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/non_exhaustive_enum_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/nonbreaking_item_rename/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/nonbreaking_item_rename/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/nonbreaking_item_rename/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/nonbreaking_item_rename/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/nonbreaking_item_rename/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/nonbreaking_item_rename/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/nonbreaking_item_rename/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/nonbreaking_item_rename/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/parameter_count_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/parameter_count_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/parameter_count_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/parameter_count_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/parameter_count_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/parameter_count_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/parameter_count_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/parameter_count_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/proc_macro_crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_crate/Cargo.toml -------------------------------------------------------------------------------- /test_crates/proc_macro_crate/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_crate/src/lib.rs -------------------------------------------------------------------------------- /test_crates/proc_macro_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/proc_macro_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/proc_macro_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/proc_macro_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/proc_macro_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_const_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_const_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_const_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_const_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_const_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_const_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_const_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_const_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_now_mutable/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_mutable/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_now_mutable/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_mutable/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_static_now_mutable/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_mutable/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_static_now_mutable/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_static_now_mutable/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_use_handling/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_use_handling/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_use_handling/new/src/inner.rs: -------------------------------------------------------------------------------- 1 | pub struct CheckPubUseHandling; 2 | -------------------------------------------------------------------------------- /test_crates/pub_use_handling/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_use_handling/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/pub_use_handling/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_use_handling/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/pub_use_handling/old/src/inner.rs: -------------------------------------------------------------------------------- 1 | pub struct CheckPubUseHandling; 2 | -------------------------------------------------------------------------------- /test_crates/pub_use_handling/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/pub_use_handling/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/renamed_lib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/renamed_lib_target/Cargo.toml -------------------------------------------------------------------------------- /test_crates/renamed_lib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/renamed_lib_target/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_align_added_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_added_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_align_added_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_added_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_align_added_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_added_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_align_added_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_added_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_align_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_align_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_align_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_align_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_align_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_c_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_c_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_c_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_c_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_c_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_c_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_c_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_c_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_packed_added_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_added_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_packed_added_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_added_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_packed_added_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_added_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_packed_added_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_added_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_packed_changed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_changed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_packed_changed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_changed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/repr_packed_changed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_changed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/repr_packed_changed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/repr_packed_changed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/rlib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/rlib_target/Cargo.toml -------------------------------------------------------------------------------- /test_crates/rlib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/rlib_target/src/lib.rs -------------------------------------------------------------------------------- /test_crates/safe_vs_unsafe_extern_fn/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/safe_vs_unsafe_extern_fn/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/safe_vs_unsafe_extern_fn/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/safe_vs_unsafe_extern_fn/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/safe_vs_unsafe_extern_fn/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/safe_vs_unsafe_extern_fn/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/safe_vs_unsafe_extern_fn/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/safe_vs_unsafe_extern_fn/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/semver_trick_self_referential/future/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub struct Example; 4 | -------------------------------------------------------------------------------- /test_crates/semver_trick_self_referential/new/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub use self_ref::Example; 4 | -------------------------------------------------------------------------------- /test_crates/semver_trick_self_referential/old/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub struct Example; 4 | -------------------------------------------------------------------------------- /test_crates/sized_impl_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/sized_impl_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/sized_impl_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/sized_impl_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/sized_impl_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/sized_impl_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/sized_impl_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/sized_impl_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/static_became_unsafe/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/static_became_unsafe/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/static_became_unsafe/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/static_became_unsafe/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/static_became_unsafe/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/static_became_unsafe/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/static_became_unsafe/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/static_became_unsafe/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/staticlib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/staticlib_target/Cargo.toml -------------------------------------------------------------------------------- /test_crates/staticlib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/staticlib_target/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_becomes_enum/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_becomes_enum/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_becomes_enum/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_becomes_enum/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_becomes_enum/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_becomes_enum/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_becomes_enum/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_becomes_enum/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_must_use_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_must_use_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_must_use_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_must_use_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_must_use_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_must_use_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_must_use_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_must_use_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_must_use_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_pub_field_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_pub_field_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_pub_field_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_pub_field_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/struct_pub_field_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_pub_field_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/struct_pub_field_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/struct_pub_field_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/target_specific_dependencies/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/target_specific_dependencies/Cargo.toml -------------------------------------------------------------------------------- /test_crates/target_specific_dependencies/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | -------------------------------------------------------------------------------- /test_crates/target_specific_dependencies/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/target_specific_dependencies/src/main.rs -------------------------------------------------------------------------------- /test_crates/template/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/template/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/template/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/template/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/template/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/template/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/template/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/template/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_added_supertrait/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_added_supertrait/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_added_supertrait/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_added_supertrait/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_added_supertrait/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_added_supertrait/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_added_supertrait/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_added_supertrait/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_generics_reordered/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_generics_reordered/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_generics_reordered/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_generics_reordered/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_generics_reordered/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_generics_reordered/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_generics_reordered/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_generics_reordered/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_marked_deprecated/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_marked_deprecated/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_marked_deprecated/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_marked_deprecated/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_marked_deprecated/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_marked_deprecated/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_marked_deprecated/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_marked_deprecated/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_unsafe_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_unsafe_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_unsafe_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_unsafe_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_method_unsafe_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_unsafe_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_method_unsafe_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_method_unsafe_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_must_use_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_must_use_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_must_use_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_must_use_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_must_use_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_must_use_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_must_use_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_must_use_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_must_use_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_newly_sealed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_newly_sealed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_newly_sealed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_newly_sealed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_newly_sealed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_newly_sealed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_newly_sealed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_newly_sealed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_removed_supertrait/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_removed_supertrait/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_removed_supertrait/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_removed_supertrait/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_removed_supertrait/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_removed_supertrait/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_removed_supertrait/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_removed_supertrait/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_unsafe_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_unsafe_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_unsafe_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_unsafe_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_unsafe_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_unsafe_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/trait_unsafe_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/trait_unsafe_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/trait_unsafe_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/type_generics_reordered/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_generics_reordered/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/type_generics_reordered/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_generics_reordered/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/type_generics_reordered/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_generics_reordered/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/type_generics_reordered/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_generics_reordered/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/new/src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/new/src/enums.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/new/src/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/new/src/structs.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/new/src/unions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/new/src/unions.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/old/src/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/old/src/enums.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/old/src/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/old/src/structs.rs -------------------------------------------------------------------------------- /test_crates/type_marked_deprecated/old/src/unions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/type_marked_deprecated/old/src/unions.rs -------------------------------------------------------------------------------- /test_crates/union_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_field_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_field_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_field_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_field_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_field_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_field_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_field_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_field_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_field_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_missing/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_missing/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_missing/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_missing/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_missing/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_missing/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_missing/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_missing/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_must_use_added/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_added/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_must_use_added/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_added/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_must_use_added/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_added/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_must_use_added/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_added/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_must_use_removed/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_removed/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_must_use_removed/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_removed/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_must_use_removed/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_removed/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_must_use_removed/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_must_use_removed/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_now_doc_hidden/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_now_doc_hidden/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_now_doc_hidden/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_now_doc_hidden/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/union_now_doc_hidden/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_now_doc_hidden/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/union_now_doc_hidden/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/union_now_doc_hidden/old/src/lib.rs -------------------------------------------------------------------------------- /test_crates/unit_struct_changed_kind/new/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/unit_struct_changed_kind/new/Cargo.toml -------------------------------------------------------------------------------- /test_crates/unit_struct_changed_kind/new/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/unit_struct_changed_kind/new/src/lib.rs -------------------------------------------------------------------------------- /test_crates/unit_struct_changed_kind/old/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/unit_struct_changed_kind/old/Cargo.toml -------------------------------------------------------------------------------- /test_crates/unit_struct_changed_kind/old/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_crates/unit_struct_changed_kind/old/src/lib.rs -------------------------------------------------------------------------------- /test_outputs/integration_snapshots__bugreport.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/integration_snapshots__bugreport.snap -------------------------------------------------------------------------------- /test_outputs/integration_snapshots__z_help.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/integration_snapshots__z_help.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/enum_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/enum_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/enum_must_use_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/enum_must_use_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/enum_now_doc_hidden.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/enum_now_doc_hidden.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/enum_repr_int_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/enum_repr_int_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/enum_variant_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/enum_variant_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/feature_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/feature_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/function_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/function_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/function_now_const.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/function_now_const.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/module_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/module_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/pub_const_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/pub_const_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/pub_static_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/pub_static_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/pub_static_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/pub_static_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_align_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_align_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_align_changed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_align_changed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_align_removed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_align_removed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_c_removed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_c_removed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_packed_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_packed_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_packed_changed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_packed_changed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/repr_packed_removed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/repr_packed_removed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/sized_impl_removed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/sized_impl_removed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/struct_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/struct_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/trait_method_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/trait_method_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/trait_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/trait_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/trait_newly_sealed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/trait_newly_sealed.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/trait_unsafe_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/trait_unsafe_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/union_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/union_added.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/union_field_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/union_field_missing.snap -------------------------------------------------------------------------------- /test_outputs/query_execution/union_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/query_execution/union_missing.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/declarative_macro_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/declarative_macro_missing.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/enum_variant_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/enum_variant_added.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/enum_variant_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/enum_variant_missing.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/function_const_removed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/function_const_removed.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/function_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/function_missing.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/function_unsafe_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/function_unsafe_added.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/macro_marked_deprecated.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/macro_marked_deprecated.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/macro_no_longer_exported.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/macro_no_longer_exported.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/module_missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/module_missing.snap -------------------------------------------------------------------------------- /test_outputs/witnesses/trait_unsafe_added.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/test_outputs/witnesses/trait_unsafe_added.snap -------------------------------------------------------------------------------- /tests/color_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/color_config.rs -------------------------------------------------------------------------------- /tests/feature_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/feature_config.rs -------------------------------------------------------------------------------- /tests/integration_snapshots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/integration_snapshots.rs -------------------------------------------------------------------------------- /tests/lib_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/lib_tests.rs -------------------------------------------------------------------------------- /tests/lint_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/lint_config.rs -------------------------------------------------------------------------------- /tests/passing_manifest_or_directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/passing_manifest_or_directory.rs -------------------------------------------------------------------------------- /tests/rustdoc_edge_cases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/rustdoc_edge_cases.rs -------------------------------------------------------------------------------- /tests/specified_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/specified_target.rs -------------------------------------------------------------------------------- /tests/verify_binary_contains_lints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obi1kenobi/cargo-semver-checks/HEAD/tests/verify_binary_contains_lints.rs --------------------------------------------------------------------------------