[package]
edition = "2021"
rust-version = "1.85.1"
name = "system-fonts"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "System font discovery and locale-based font preset selection."
homepage = "https://github.com/yijehyung/system-fonts"
documentation = "https://docs.rs/system-fonts"
readme = "README.md"
keywords = [
"font",
"locale",
"fallback",
]
categories = ["localization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yijehyung/system-fonts"
[lib]
name = "system_fonts"
path = "src/lib.rs"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.fontdb]
version = "0.23.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sys-locale]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"Window",
"Navigator",
]