[package]
edition = "2021"
rust-version = "1.80"
name = "oxideav-scribe"
version = "0.1.7"
authors = ["Mark Karpeles"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust vector font shaper + layout for the oxideav framework — TrueType / OTF outline access, GSUB ligatures, GPOS kerning, mark attachment, CBDT colour bitmaps. Pixel pipeline lives in oxideav-raster."
homepage = "https://github.com/OxideAV/oxideav-scribe"
readme = "README.md"
keywords = [
"font",
"rasterizer",
"shaper",
"truetype",
"text",
]
categories = [
"graphics",
"rendering",
"text-processing",
]
license = "MIT"
repository = "https://github.com/OxideAV/oxideav-scribe"
[lib]
name = "oxideav_scribe"
path = "src/lib.rs"
[[test]]
name = "dejavu_render"
path = "tests/dejavu_render.rs"
[[test]]
name = "round10_bengali_cluster"
path = "tests/round10_bengali_cluster.rs"
[[test]]
name = "round10_tamil_cluster"
path = "tests/round10_tamil_cluster.rs"
[[test]]
name = "round11_gujarati_cluster"
path = "tests/round11_gujarati_cluster.rs"
[[test]]
name = "round11_kannada_cluster"
path = "tests/round11_kannada_cluster.rs"
[[test]]
name = "round11_telugu_cluster"
path = "tests/round11_telugu_cluster.rs"
[[test]]
name = "round12_khmer_cluster"
path = "tests/round12_khmer_cluster.rs"
[[test]]
name = "round12_sinhala_cluster"
path = "tests/round12_sinhala_cluster.rs"
[[test]]
name = "round12_thai_cluster"
path = "tests/round12_thai_cluster.rs"
[[test]]
name = "round3_marks"
path = "tests/round3_marks.rs"
[[test]]
name = "round4_marks"
path = "tests/round4_marks.rs"
[[test]]
name = "round5_cjk_fallback"
path = "tests/round5_cjk_fallback.rs"
[[test]]
name = "round5_emoji"
path = "tests/round5_emoji.rs"
[[test]]
name = "round6_color_bitmap"
path = "tests/round6_color_bitmap.rs"
[[test]]
name = "round7_arabic_joining"
path = "tests/round7_arabic_joining.rs"
[[test]]
name = "round7_bitmap_glyph_node"
path = "tests/round7_bitmap_glyph_node.rs"
[[test]]
name = "round7_glyph_path"
path = "tests/round7_glyph_path.rs"
[[test]]
name = "round7_glyph_path_cff"
path = "tests/round7_glyph_path_cff.rs"
[[test]]
name = "round7_shape_to_paths"
path = "tests/round7_shape_to_paths.rs"
[[test]]
name = "round8_cache_key"
path = "tests/round8_cache_key.rs"
[[test]]
name = "round8_devanagari_cluster"
path = "tests/round8_devanagari_cluster.rs"
[[test]]
name = "round9_variable_font"
path = "tests/round9_variable_font.rs"
[[test]]
name = "source_sans_cff"
path = "tests/source_sans_cff.rs"
[dependencies.oxideav-core]
version = "0.1.15"
[dependencies.oxideav-otf]
version = "0.1"
[dependencies.oxideav-png]
version = "0.1"
[dependencies.oxideav-ttf]
version = "0.1"
[dev-dependencies.ureq]
version = "3"