-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Panic while redering space in NotoSans-Regular #64
Comments
The servo crate is not maintained anymore. This also bumps freetype-rs along the way, since it had circular dependency. Closes: alacritty#64
See #65 I think we kind of can propagate this bump, given that only sctk-adwaita and alacritty depend on crossfont according to crates.io, thus it's likely not that big of a deal, given that we won't break binary crates, I think. |
The servo crate is not maintained anymore. This also bumps freetype-rs along the way, since it had circular dependency. Closes: #64
If you could, make this a patch number bump. That way, it gets automatically selected by the resolver |
Btw, thank you for being very quick to respond! |
It's a breaking change, so we can't do that. |
Understandable. Thank you very much again :) |
The servo crate is not maintained anymore. This also bumps freetype-rs along the way, since it had circular dependency. Closes: #64
I've been thorugh a a bit of a rabbit hole today because of a segfault in
freetype-rs
. After reading logs and stack traces, it is caused by this crate using a way too low version offreetype-rs
. From what I have gathered, the issue happens with some characters that are blanks.This is because
Face::load_glyph
can populate the slot with valid information, but no bitmap buffer, leaving it empty. However, in C, an empty slice is represented as (null, 0) but this is invalid in rust, causing a panic when trying to load it incrossfont
. Here's the offending code: link.This issue was fixed in this commit, and later released as version 30.1.
Related issue: #44
The text was updated successfully, but these errors were encountered: