1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[]
= "owned_ttf_parser"
# Version should be inline with ttf-parser
= "0.25.0"
= ["Alex Butler <alexheretic@gmail.com>"]
= "2021"
= "ttf-parser plus support for owned data"
= "https://github.com/alexheretic/owned-ttf-parser"
= ["ttf", "truetype", "otf", "opentype"]
= "Apache-2.0"
= "README.md"
[]
= { = "0.25", = false }
[]
= ["std", "opentype-layout", "apple-layout", "variable-fonts", "glyph-names"]
# Activates usage of std.
# When disabled, the `no-std-float` feature must be enabled instead.
= ["ttf-parser/std"]
= ["ttf-parser/no-std-float"]
# Enables variable fonts support. Increases binary size almost twice.
# Includes avar, CFF2, fvar, gvar, HVAR, MVAR and VVAR tables.
= ["ttf-parser/variable-fonts"]
# Enables GDEF, GPOS and GSUB tables.
= ["ttf-parser/opentype-layout"]
# Enables ankr, feat, format1 subtable in kern, kerx, morx and trak tables.
= ["ttf-parser/apple-layout"]
# Enables glyph name query via `Face::glyph_name`.
# TrueType fonts do not store default glyph names, to reduce file size,
# which means we have to store them in ttf-parser. And there are almost 500 of them.
# By disabling this feature a user can reduce binary size a bit.
= ["ttf-parser/glyph-names"]
# Enables heap allocations during gvar table parsing used by Apple's variable fonts.
# Due to the way gvar table is structured, we cannot avoid allocations.
# By default, only up to 32 variable tuples will be allocated on the stack,
# while the spec allows up to 4095. Most variable fonts use 10-20 tuples,
# so our limit is suitable for most of the cases. But if you need full support, you have to
# enable this feature.
= ["std", "ttf-parser/gvar-alloc"]