[package]
edition = "2021"
name = "pretext"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Unicode text preparation and paragraph layout engine for Pretext."
documentation = "https://docs.rs/pretext"
readme = "README.md"
keywords = [
"text",
"layout",
"bidi",
"unicode",
"shaping",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/foreverzmy/egui_pretext"
[lib]
name = "pretext"
path = "src/lib.rs"
[[test]]
name = "bidi"
path = "tests/bidi.rs"
[[test]]
name = "font_fallback"
path = "tests/font_fallback.rs"
[[test]]
name = "goldens"
path = "tests/goldens.rs"
[[test]]
name = "layout_parity"
path = "tests/layout_parity.rs"
[[test]]
name = "letter_spacing"
path = "tests/letter_spacing.rs"
[[test]]
name = "line_break"
path = "tests/line_break.rs"
[[test]]
name = "line_runs"
path = "tests/line_runs.rs"
[[test]]
name = "paragraph_cache"
path = "tests/paragraph_cache.rs"
[[test]]
name = "segmentation"
path = "tests/segmentation.rs"
[[test]]
name = "shaping"
path = "tests/shaping.rs"
[[test]]
name = "whitespace"
path = "tests/whitespace.rs"
[dependencies.ahash]
version = "0.8.12"
[dependencies.fontdb]
version = "0.23.0"
[dependencies.icu_locale]
version = "2.1.1"
[dependencies.icu_segmenter]
version = "2.1.2"
[dependencies.lru]
version = "0.16.3"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.rustybuzz]
version = "0.20.1"
[dependencies.ttf-parser]
version = "0.25.1"
[dependencies.unicode-bidi]
version = "0.3.18"
[dependencies.unicode-linebreak]
version = "0.1.5"
[dependencies.unicode-script]
version = "0.5.7"
[dependencies.unicode-segmentation]
version = "1.13.2"
[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.149"