glyphon/Cargo.toml

27 lines
691 B
TOML
Raw Normal View History

2022-05-09 08:49:10 -04:00
[package]
name = "glyphon"
description = "Fast, simple 2D text rendering for wgpu"
2024-11-05 14:43:59 -05:00
version = "0.7.0"
2022-05-09 08:49:10 -04:00
edition = "2021"
homepage = "https://github.com/grovesNL/glyphon.git"
repository = "https://github.com/grovesNL/glyphon"
license = "MIT OR Apache-2.0 OR Zlib"
[dependencies]
2025-01-18 20:59:56 -05:00
wgpu = { version = "24", default-features = false, features = ["wgsl"] }
2023-11-19 18:26:16 -05:00
etagere = "0.2.10"
cosmic-text = "0.12"
lru = { version = "0.12.1", default-features = false }
rustc-hash = "2.0"
2022-05-09 08:49:10 -04:00
[dev-dependencies]
winit = "0.30.3"
2025-01-18 20:59:56 -05:00
wgpu = "24"
2024-10-30 11:59:19 -04:00
resvg = { version = "0.44", default-features = false }
pollster = "0.4.0"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "prepare"
harness = false