https://bugzilla.redhat.com/show_bug.cgi?id=2455091
--- Comment #5 from Ben Beasley <[email protected]> --- Hmm, did you do a local test build? I get a lot of, error[E0433]: cannot find module or crate `font_test_data` in this scope --> src/array.rs:215:9 | 215 | use font_test_data::bebuffer::BeBuffer; | ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `font_test_data` | = help: if you wanted to use a crate named `font_test_data`, use `cargo add font_test_data` to add it to your `Cargo.toml` This is because the workspace dependency on font-test-data, https://github.com/googlefonts/fontations/blob/d91a0b4daa16889d11e3f7d46b9fef00a787eacf/Cargo.toml#L44, is path-based (and doesn’t have a version), so the dev-dependency ends up totally removed in the normalized Cargo.toml. You’ll need to restore it manually when patching Cargo.toml, something like: [dev-dependencies.font-test-data] version = "0.6.2" ---- Note that the [[package.extra-sources]] section goes into rust2rpm.toml, not Cargo.toml. See the man page for rust2rpm.toml. -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component https://bugzilla.redhat.com/show_bug.cgi?id=2455091 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202455091%23c5 -- _______________________________________________ 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
