[package]
edition = "2024"
name = "titanf"
version = "2.3.3"
authors = ["Hoteira <hoteira@proton.me>"]
build = false
exclude = [
"img/*",
"benches/*",
".github/*",
"target/*",
"*.ttf",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, safe, no_std font rasterizer written in pure Rust"
homepage = "https://github.com/Hoteira/titanf"
documentation = "https://docs.rs/titanf"
readme = "README.md"
keywords = [
"font",
"rasterizer",
"truetype",
"rendering",
"text",
]
categories = [
"graphics",
"rendering",
"no-std",
]
license = "MIT"
repository = "https://github.com/Hoteira/titan-f"
[features]
default = []
std = []
[lib]
name = "titanf"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[dev-dependencies.ab_glyph]
version = "0.2.32"
[dev-dependencies.criterion]
version = "0.7.0"
features = ["html_reports"]
[dev-dependencies.fontdue]
version = "0.9.3"
[dev-dependencies.rusttype]
version = "0.9.3"