Skip to content

Commit 14f45f9

Browse files
committed
Add "gvar-alloc" feature enabled by default
1 parent 6c0b057 commit 14f45f9

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

glyph/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Unreleased (0.2.31)
2+
* Add "gvar-alloc" feature enabled by default (activates _ttf-parser_ "gvar-alloc" feature).
3+
Provides full gvar table support.
4+
15
# 0.2.30
26
* Add `Font::italic_angle` for accessing the slant angle.
37

glyph/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ libm = { version = "0.2.1", optional = true }
1919
# don't add any, instead use ./dev
2020

2121
[features]
22-
default = ["std", "variable-fonts"]
22+
default = ["std", "variable-fonts", "gvar-alloc"]
2323
# Activates usage of std.
2424
std = ["owned_ttf_parser/default", "ab_glyph_rasterizer/default"]
2525
# Uses libm when not using std. This needs to be active in that case.
2626
libm = ["dep:libm", "ab_glyph_rasterizer/libm", "owned_ttf_parser/no-std-float"]
27+
# Enables `VariableFont` functionality.
2728
variable-fonts = ["owned_ttf_parser/variable-fonts"]
29+
# Enables full gvar table support.
30+
gvar-alloc = ["owned_ttf_parser/gvar-alloc"]

0 commit comments

Comments
 (0)