rusttype 0.8.3

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.approx]
default-features = false
version = "0.3"

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

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

[dependencies.ordered-float]
default-features = false
version = "1"

[dependencies.rustc-hash]
optional = true
version = "1"

[dependencies.stb_truetype]
default-features = false
version = "0.3.1"

[dev-dependencies]

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

[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.8.3"
[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"