[package]
edition = "2021"
rust-version = "1.87"
name = "valo-text"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typographer and paragraph layout for valo: shaping, bidi, wrapping, glyph raster, SDF"
readme = "README.md"
keywords = [
"graphics",
"gpu",
"wgpu",
"2d",
"renderer",
]
categories = [
"graphics",
"rendering::engine",
]
license = "MIT"
repository = "https://github.com/seedeai/valo"
[features]
woff2 = ["dep:woff2-patched"]
[lib]
name = "valo_text"
path = "src/lib.rs"
[[example]]
name = "emoji_probe"
path = "examples/emoji_probe.rs"
required-features = ["woff2"]
[[example]]
name = "raster_bench"
path = "examples/raster_bench.rs"
[[test]]
name = "collection"
path = "tests/collection.rs"
[[test]]
name = "colr"
path = "tests/colr.rs"
[[test]]
name = "paragraph"
path = "tests/paragraph.rs"
[[test]]
name = "woff2"
path = "tests/woff2.rs"
[dependencies.harfrust]
version = "0.4"
[dependencies.skrifa]
version = "0.35"
[dependencies.swash]
version = "0.2"
[dependencies.tiny-skia]
version = "0.11"
features = [
"std",
"simd",
]
default-features = false
[dependencies.unicode-bidi]
version = "0.3"
[dependencies.unicode-linebreak]
version = "0.1"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.valo-geometry]
version = "0.2.2"
[dependencies.woff2-patched]
version = "0.4"
optional = true