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
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "owned_ttf_parser"
version = "0.25.0"
authors = ["Alex Butler <alexheretic@gmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ttf-parser plus support for owned data"
readme = "README.md"
keywords = [
"ttf",
"truetype",
"otf",
"opentype",
]
license = "Apache-2.0"
repository = "https://github.com/alexheretic/owned-ttf-parser"
[lib]
name = "owned_ttf_parser"
path = "src/lib.rs"
[[test]]
name = "face_mut"
path = "tests/face_mut.rs"
[dependencies.ttf-parser]
version = "0.25"
default-features = false
[features]
apple-layout = ["ttf-parser/apple-layout"]
default = [
"std",
"opentype-layout",
"apple-layout",
"variable-fonts",
"glyph-names",
]
glyph-names = ["ttf-parser/glyph-names"]
gvar-alloc = [
"std",
"ttf-parser/gvar-alloc",
]
no-std-float = ["ttf-parser/no-std-float"]
opentype-layout = ["ttf-parser/opentype-layout"]
std = ["ttf-parser/std"]
variable-fonts = ["ttf-parser/variable-fonts"]
|