[package]
edition = "2021"
rust-version = "1.89"
name = "oxitext-shape"
version = "0.1.1"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Swash-based text shaper for OxiText"
readme = "README.md"
keywords = [
"text",
"shaping",
"swash",
"opentype",
"oxitext",
]
categories = [
"graphics",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxitext"
[features]
icu = ["dep:oxitext-icu"]
native-fallback = ["dep:oxifont-adapter-native"]
rustybuzz-backend = ["dep:rustybuzz"]
system-fonts = ["dep:oxifont"]
[lib]
name = "oxitext_shape"
path = "src/lib.rs"
[[test]]
name = "alt_backend"
path = "tests/alt_backend.rs"
[dependencies.lru]
version = "0.18.0"
[dependencies.oxifont]
version = "0.1.1"
features = ["db"]
optional = true
[dependencies.oxifont-adapter-native]
version = "0.1.1"
optional = true
[dependencies.oxitext-core]
version = "0.1.1"
[dependencies.oxitext-icu]
version = "0.1.1"
optional = true
[dependencies.rustybuzz]
version = "0.20.1"
optional = true
[dependencies.smallvec]
version = "1.15.1"
[dependencies.swash]
version = "0.2.7"
[dependencies.ttf-parser]
version = "0.25.1"
[dependencies.unicode-segmentation]
version = "1.13.2"