You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not crazy! I will not fill out this form just to ask a question or request a feature. Pinky promise.
Is there an existing issue for this?
I have searched the existing issues.
Is this issue related to iced?
My hardware is compatible and my graphics drivers are up-to-date.
What happened?
I cloned the examples fresh, tried to build and it wouldn't build due to an breaking change in read-fonts, incompatible with the currently pinned version of skrifa.
cargo update on my apps using iced also broke my builds.
The error was as follows :
error[E0599]: no method named `get_compatibility_id` found for reference `&TableRef<'_, PatchMapFormat2Marker>` in the current scope
--> C:\Users\kcoulombe\.cargo\registry\src\index.crates.io-6f17d22bba15001f\skrifa-0.22.3\src\patchmap.rs:278:25
|
278 | let compat_id = map.get_compatibility_id();
| ^^^^^^^^^^^^^^^^^^^^
|
help: there is a method `compatibility_id` with a similar name
|
278 | let compat_id = map.compatibility_id();
| ~~~~~~~~~~~~~~~~
This was needed to fix it temporarily, reverting read-fonts to 0.22.3 (instead of 0.22.4) :
I'm a Rust noob, but I suspect this comes from a downstream dependency and will likely get fixed on its own, but at least the next guy hitting this will hopefully find this and waste less time than I did. ;)
Note : It would be nice to commit the cargo.lock file and use a bot to upgrade everything, although I get it's another maintenance burden...
What is the expected behavior?
clone the repo, run the examples, no build errors
Version
master
Operating System
Windows
Do you have any log output?
No response
The text was updated successfully, but these errors were encountered:
Is your issue REALLY a bug?
Is there an existing issue for this?
Is this issue related to iced?
What happened?
I cloned the examples fresh, tried to build and it wouldn't build due to an breaking change in read-fonts, incompatible with the currently pinned version of skrifa.
cargo update
on my apps using iced also broke my builds.The error was as follows :
This was needed to fix it temporarily, reverting read-fonts to 0.22.3 (instead of 0.22.4) :
I'm a Rust noob, but I suspect this comes from a downstream dependency and will likely get fixed on its own, but at least the next guy hitting this will hopefully find this and waste less time than I did. ;)
Note : It would be nice to commit the
cargo.lock
file and use a bot to upgrade everything, although I get it's another maintenance burden...What is the expected behavior?
clone the repo, run the examples, no build errors
Version
master
Operating System
Windows
Do you have any log output?
No response
The text was updated successfully, but these errors were encountered: