https://bugzilla.redhat.com/show_bug.cgi?id=2434123
--- Comment #3 from Ben Beasley <[email protected]> --- Since the README.md is included as a Rust documentation string, > #![doc = include_str!("./README.md")] it should not be packaged as documentation, because compilation of the crate will fail without it. This is a subtle issue, easy to miss and unlikely to cause problems in practice since Rust library packages are generally only useful for building other Fedora packages, but strictly speaking you should do something about it. You can try something like this in rust2rpm.toml [package] doc-files.exclude = [ # This file is included as a documentation string in the library, so # compilation fails if it is not present. It therefore must not be marked # as documentation, because packages should be equally useful when their # documentation is not installed. "README.md", ] -- You are receiving this mail because: You are always notified about changes to this product and component You are on the CC list for the bug. https://bugzilla.redhat.com/show_bug.cgi?id=2434123 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202434123%23c3 -- _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
