Releases: alexheretic/owned-ttf-parser
Releases · alexheretic/owned-ttf-parser
0.10.0
- Update ttf-parser to
0.10
changelog.
- Add
variable-fonts
features, alongside existing std
feature (both default) inline with upstream.
0.8.0
- Update ttf-parser to
0.8
changelog.
OwnedFace::from_vec
now returns a Result
.
0.7.0
- Update ttf-parser to
0.7
changelog.
- Update
*Font
-> *Face
to reflect the ttf-parser API changes.
// 0.6
let owned_font = OwnedFont::from_vec(owned_font_data, 0)?;
// 0.7
let owned_face = OwnedFace::from_vec(owned_font_data, 0)?;
0.6.0
- Update ttf-parser to
0.6
.
0.5.0
- Implement crate supporting ttf-parser
0.5
.