-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (30 loc) · 930 Bytes
/
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
[package]
name = "opentype"
version = "0.38.1"
edition = "2021"
license = "Apache-2.0/MIT"
authors = [
"Ivan Ukhov <ivan.ukhov@gmail.com>",
"Simon Sapin <simon.sapin@exyr.org>",
]
description = "The package provides a builder and parser of OpenType fonts."
documentation = "https://docs.rs/opentype"
homepage = "https://github.com/bodoni/opentype"
repository = "https://github.com/bodoni/opentype"
readme = "README.md"
categories = ["parsing"]
keywords = ["font", "opentype", "typeface", "typography"]
exclude = ["tests/fixtures/*"]
[features]
default-language = []
# https://github.com/google/fonts/issues/6888
ignore-incomplete-directories = []
# https://github.com/google/fonts/issues/6894
ignore-incomplete-marks = []
# https://github.com/google/fonts/issues/6892
# https://github.com/google/fonts/issues/6893
ignore-invalid-checksums = []
[dependencies]
postscript = "0.18.3"
truetype = "0.47.7"
typeface = "0.4.2"