rusttype 0.9.2

A pure Rust alternative to libraries like FreeType. RustType provides an API for loading, querying and rasterising TrueType fonts. It also provides an implementation of a dynamic GPU glyph cache for hardware font rendering.
Documentation
[dependencies.ab_glyph_rasterizer]
default-features = false
version = "0.1.1"

[dependencies.libm]
default-features = false
optional = true
version = "0.2.1"

[dependencies.linked-hash-map]
optional = true
version = "0.5"

[dependencies.owned_ttf_parser]
default-features = false
version = "0.6"

[dependencies.rustc-hash]
optional = true
version = "1"
[dev-dependencies.approx]
default-features = false
version = "0.3"

[features]
default = ["std"]
gpu_cache = ["std", "linked-hash-map", "rustc-hash", "crossbeam-deque", "crossbeam-utils", "num_cpus"]
has-atomics = []
libm-math = ["libm", "ab_glyph_rasterizer/libm"]
std = ["has-atomics", "owned_ttf_parser/default", "ab_glyph_rasterizer/default"]

[package]
authors = ["Dylan Ede <dylanede@googlemail.com>", "Jeremy Soller <jackpot51@gmail.com>", "Alex Butler <alexheretic@gmail.com>"]
description = "A pure Rust alternative to libraries like FreeType.\n\nRustType provides an API for loading, querying and rasterising TrueType fonts.\n\nIt also provides an implementation of a dynamic GPU glyph cache for hardware font rendering.\n"
documentation = "https://docs.rs/rusttype"
edition = "2018"
exclude = ["/dev/**"]
homepage = "https://gitlab.redox-os.org/redox-os/rusttype"
keywords = ["font", "truetype", "opentype", "ttf", "otf"]
license = "MIT / Apache-2.0"
name = "rusttype"
readme = "README.md"
repository = "https://gitlab.redox-os.org/redox-os/rusttype"
version = "0.9.2"
[package.metadata.docs.rs]
features = ["gpu_cache"]
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.crossbeam-deque]
optional = true
version = "0.7"

[target."cfg(not(target_arch = \"wasm32\"))".dependencies.crossbeam-utils]
optional = true
version = "0.7"

[target."cfg(not(target_arch = \"wasm32\"))".dependencies.num_cpus]
optional = true
version = "1.0"