-
Notifications
You must be signed in to change notification settings - Fork 70
/
Cargo.toml
63 lines (58 loc) · 2.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "ttf-parser"
version = "0.25.1"
authors = [
"Caleb Maclennan <[email protected]>",
"Laurenz Stampfl <[email protected]>",
"Yevhenii Reizner <[email protected]>",
"خالد حسني (Khaled Hosny) <[email protected]>"
]
keywords = ["ttf", "truetype", "opentype"]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
description = "A high-level, safe, zero-allocation font parser for TrueType, OpenType, and AAT."
repository = "https://github.com/harfbuzz/ttf-parser"
documentation = "https://docs.rs/ttf-parser/"
readme = "README.md"
edition = "2018"
rust-version = "1.63.0"
exclude = ["benches/**"]
[dependencies]
core_maths = { version = "0.1.0", optional = true } # only for no_std builds
[features]
default = ["std", "opentype-layout", "apple-layout", "variable-fonts", "glyph-names"]
# Enables the use of the standard library.
# When disabled, the `no-std-float` feature must be enabled instead.
std = []
no-std-float = ["core_maths"]
# Enables variable fonts support. Increases binary size almost twice.
# Includes avar, CFF2, fvar, gvar, HVAR, MVAR and VVAR tables.
variable-fonts = []
# Enables GDEF, GPOS, GSUB and MATH tables.
opentype-layout = []
# Enables ankr, feat, format1 subtable in kern, kerx, morx and trak tables.
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 = []
# 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"]
[dev-dependencies]
base64 = "0.22.1"
pico-args = "0.5"
tiny-skia-path = "0.11.4"
xmlwriter = "0.1"
[package.metadata.typos.default]
locale = "en-us"
[package.metadata.typos.default.extend-words]
loca = "loca"
ot = "ot"
trak = "trak"
wdth = "wdth"