cargo-semver-checks 0.45.0

Scan your Rust crate for semver violations.
Documentation
SemverQuery(
    id: "declarative_macro_missing",
    human_readable_name: "macro_rules declaration removed or renamed",
    description: "A declarative macro marked with #[macro_export] can no longer be imported by its prior name.",
    required_update: Major,
    lint_level: Deny,
    reference_link: Some("https://doc.rust-lang.org/reference/macros-by-example.html#path-based-scope"),
    query: r#"
    {
        CrateDiff {
            baseline {
                item {
                    ... on Macro {
                        visibility_limit @filter(op: "=", value: ["$public"])
                        name @output @tag

                        importable_path {
                            path @output @tag
                            public_api @filter(op: "=", value: ["$true"])
                        }

                        span_: span @optional {
                            filename @output
                            begin_line @output
                            end_line @output
                        }
                    }
                }
            }
            current {
                # There is no exported macro at that path anymore (hidden or not).
                item @fold @transform(op: "count") @filter(op: "=", value: ["$zero"]) {
                    ... on Macro {
                        importable_path {
                            path @filter(op: "=", value: ["%path"])
                        }
                    }
                }

                # There is also no macro under the same name that is *not* exported,
                # nor exportable (in a way that fixes the breakage)
                # just by adding `#[macro_export]`.
                # This is to differentiate from the `macro_no_longer_exported` and
                # `macro_now_doc_hidden` lints.
                item @fold @transform(op: "count") @filter(op: "=", value: ["$zero"]) {
                    ... on Macro {
                        name @filter(op: "=", value: ["%name"])
                        public_api_eligible @filter(op: "!=", value: ["$true"])
                        doc_hidden @filter(op: "!=", value: ["$true"])
                    }
                }
            }
        }
    }"#,
    arguments: {
        "public": "public",
        "zero": 0,
        "true": true,
    },
    error_message: "A `macro_rules!` declarative macro cannot be invoked by its prior name. The macro may have been renamed or removed entirely.",
    per_result_error_template:  Some("macro {{name}}, previously in file {{span_filename}}:{{span_begin_line}}"),
    witness: (
        hint_template: r#"{{name}}!(...);"#
    ),
)