Files
wayvr/wgui/Cargo.toml
Aleksander 71898056f3 add WguiFontSystem, remove FONT_SYSTEM singleton, custom fonts, add Light font weight
there are a few gzip-compressed ttf as for now, looks like variable fonts aren't parsed properly by cosmic_text. Not sure why. Also, we probably need to have a fallback for CJK characters in the future, or just fallback to the built-in ones in the OS.
2025-11-07 22:21:57 +01:00

34 lines
722 B
TOML

[package]
name = "wgui"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
cosmic-text = "0.14.2"
etagere = "0.2.15"
glam = { workspace = true }
image = { version = "0.25.8", default-features = false, features = [
"gif",
"jpeg",
"png",
"rayon",
"webp",
] }
log = { workspace = true }
lru = "0.16.1"
ouroboros = "0.18.5"
parking_lot = "0.12.4"
regex = { workspace = true }
resvg = { version = "0.45.1", default-features = false }
roxmltree = "0.20.0"
rustc-hash = "2.1.1"
serde_json = "1.0.145"
slotmap = { workspace = true }
smallvec = "1.15.1"
taffy = "0.9.1"
vulkano = { workspace = true }
vulkano-shaders = { workspace = true }
rust-embed = { workspace = true }
flate2 = "1.1.5"