wuff 0.2.4

Pure-rust WOFF and WOFF2 font decoding
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 = "2024"
name = "wuff"
version = "0.2.4"
authors = ["Nico Burns <nico@nicoburns.com>"]
build = false
include = [
    "Cargo.toml",
    "README.md",
    "src/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-rust WOFF and WOFF2 font decoding"
documentation = "https://docs.rs/wuff"
readme = "README.md"
keywords = [
    "font",
    "opentype",
    "truetype",
    "woff",
    "woff2",
]
categories = ["parsing"]
license = "MIT"
repository = "https://github.com/nicoburns/wuff"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
brotli = ["dep:brotli-decompressor"]
debug = []
default = [
    "brotli",
    "z",
]
font_compression_bin = []
z = ["dep:flate2"]

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

[[bin]]
name = "wuff"
path = "src/main.rs"

[dependencies.arrayvec]
version = "0.7.6"

[dependencies.brotli-decompressor]
version = "5.0.0"
optional = true

[dependencies.bytes]
version = "1.10.1"

[dependencies.flate2]
version = "1.1.2"
optional = true

[dependencies.font-types]
version = "0.11.0"