forked from alexheretic/owned-ttf-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (36 loc) · 1.73 KB
/
Cargo.toml
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
[package]
name = "owned_ttf_parser"
# Version should be inline with ttf-parser
version = "0.18.1"
authors = ["Alex Butler <[email protected]>"]
edition = "2021"
description = "ttf-parser plus support for owned data"
repository = "https://github.com/alexheretic/owned-ttf-parser"
keywords = ["ttf", "truetype", "otf", "opentype"]
license = "Apache-2.0"
readme="README.md"
[dependencies]
ttf-parser = { version = "0.18.1", default-features = false }
[features]
default = ["std", "opentype-layout", "apple-layout", "variable-fonts", "glyph-names"]
# Activates usage of std.
std = ["ttf-parser/std"]
# Enables variable fonts support. Increases binary size almost twice.
# Includes avar, CFF2, fvar, gvar, HVAR, MVAR and VVAR tables.
variable-fonts = ["ttf-parser/variable-fonts"]
# Enables GDEF, GPOS and GSUB tables.
opentype-layout = ["ttf-parser/opentype-layout"]
# Enables ankr, feat, format1 subtable in kern, kerx, morx and trak tables.
apple-layout = ["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.
glyph-names = ["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.
gvar-alloc = ["std", "ttf-parser/gvar-alloc"]