rust-fontconfig 2.0.0

Pure-Rust alternative to font-loader and fontconfig w. minimal dependencies
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 = "2021"
name = "rust-fontconfig"
version = "2.0.0"
authors = ["Felix Schütt <felix.schuett@maps4print.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust alternative to font-loader and fontconfig w. minimal dependencies"
readme = "README.md"
keywords = [
    "fontconfig",
    "font-loader",
    "font",
    "system-fonts",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/fschutt/rust-fontconfig"

[features]
async-registry = [
    "std",
    "parsing",
]
cache = [
    "serde",
    "bincode",
    "std",
]
default = [
    "std",
    "parsing",
    "multithreading",
]
ffi = [
    "parsing",
    "std",
]
multithreading = ["rayon"]
parsing = ["allsorts"]
std = ["mmapio"]

[lib]
name = "rust_fontconfig"
crate-type = [
    "rlib",
    "staticlib",
    "cdylib",
]
path = "src/lib.rs"

[[example]]
name = "character_resolution"
path = "examples/character_resolution.rs"

[[example]]
name = "debug_azul_fonts"
path = "examples/debug_azul_fonts.rs"

[[example]]
name = "getfont"
path = "examples/getfont.rs"

[[example]]
name = "integration_api"
path = "examples/integration_api.rs"

[[example]]
name = "query"
path = "examples/query.rs"

[[example]]
name = "registry"
path = "examples/registry.rs"

[[example]]
name = "unicode_aware_fonts"
path = "examples/unicode_aware_fonts.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.allsorts]
version = "0.16.1"
features = ["flate2_rust"]
optional = true
default-features = false

[dependencies.base64]
version = "0.22.1"

[dependencies.bincode]
version = "1"
optional = true

[dependencies.rayon]
version = "1.5.0"
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.xmlparser]
version = "0.13.3"
default-features = false

[target.'cfg(not(target_family="wasm"))'.dependencies.mmapio]
version = "0.9.1"
optional = true
default-features = false