2022-05-09 08:49:10 -04:00
|
|
|
[package]
|
|
|
|
name = "glyphon"
|
|
|
|
description = "Fast, simple 2D text rendering for wgpu"
|
2025-01-21 10:10:09 -05:00
|
|
|
version = "0.8.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"
|
2024-07-08 08:52:33 -04:00
|
|
|
cosmic-text = "0.12"
|
2024-03-29 21:17:39 -04:00
|
|
|
lru = { version = "0.12.1", default-features = false }
|
2024-07-08 08:52:33 -04:00
|
|
|
rustc-hash = "2.0"
|
2022-05-09 08:49:10 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-25 14:05:55 -04:00
|
|
|
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"
|
2024-11-28 08:36:23 -05:00
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "prepare"
|
|
|
|
harness = false
|