fontdb 0.24.0

A simple, in-memory font database with CSS-like queries.
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"
rust-version = "1.71"
name = "fontdb"
version = "0.24.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, in-memory font database with CSS-like queries."
documentation = "https://docs.rs/fontdb/"
readme = "README.md"
keywords = [
    "font",
    "db",
    "css",
    "truetype",
    "ttf",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/RazrFalcon/fontdb"

[features]
default = [
    "std",
    "fs",
    "memmap",
    "fontconfig",
]
fontconfig = [
    "fontconfig-parser",
    "fs",
]
fs = ["std"]
memmap = [
    "fs",
    "memmap2",
]
std = []

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

[[example]]
name = "find-system-font"
path = "examples/find-system-font.rs"

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

[dependencies.log]
version = "0.4"

[dependencies.memmap2]
version = "0.9"
optional = true

[dependencies.slotmap]
version = "1.0.6"
default-features = false

[dependencies.tinyvec]
version = "1.6.0"
features = ["alloc"]

[dev-dependencies.env_logger]
version = "0.10"
default-features = false

[target.'cfg(all(unix, not(any(target_os = "macos", target_os = "android"))))'.dependencies.fontconfig-parser]
version = "0.5"
optional = true
default-features = false