glyphon/Cargo.toml

22 lines
586 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]
2024-10-30 11:59:19 -04:00
wgpu = { version = "23", 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"
2024-10-30 11:59:19 -04:00
wgpu = "23"
resvg = { version = "0.44", default-features = false }
pollster = "0.4.0"