[package]
edition = "2024"
name = "flash-font"
version = "0.2.0"
authors = ["Naganohara Yoshino <naganohara-yoshino@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cache fonts in sqlite"
documentation = "https://docs.rs/flash-font"
readme = "README.md"
keywords = [
"font",
"sqlite",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/naganohara-yoshino/flash-font"
[lib]
name = "flash_font"
path = "src/lib.rs"
[dependencies.camino]
version = "1.2"
[dependencies.diesel]
version = "2.3"
features = [
"sqlite",
"returning_clauses_for_sqlite_3_35",
]
[dependencies.libsqlite3-sys]
version = "0.30"
features = ["bundled"]
[dependencies.memmap2]
version = "0.9"
[dependencies.rayon]
version = "1.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.ttf-parser]
version = "0.25"
[dependencies.walkdir]
version = "2"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = ["Win32_Storage_FileSystem"]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(ci)"]