fontdue 0.9.4

A simple no_std font parser and rasterizer.
Documentation
# 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 = "2018"
name = "fontdue"
version = "0.9.4"
authors = ["Joe Cumbo <mooman219@gmail.com>"]
build = false
exclude = ["dev/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple no_std font parser and rasterizer."
homepage = "https://github.com/mooman219/fontdue"
documentation = "https://docs.rs/fontdue"
readme = "README.md"
keywords = [
    "font",
    "text",
    "truetype",
    "opentype",
    "ttf",
]
categories = [
    "no-std",
    "gui",
]
license = "MIT OR Apache-2.0 OR Zlib"
repository = "https://github.com/mooman219/fontdue"

[badges.maintenance]
status = "experimental"

[features]
default = [
    "simd",
    "hashbrown",
]
parallel = [
    "rayon",
    "hashbrown",
    "hashbrown/rayon",
]
simd = []
std = []

[lib]
name = "fontdue"
path = "src/lib.rs"

[dependencies.hashbrown]
version = "0.15"
optional = true

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.ttf-parser]
version = "0.25"
features = [
    "opentype-layout",
    "no-std-float",
]
default-features = false