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-09-17 01:27:18 -04:00
version = "0.6.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]
wgpu = { version = "22", 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"
wgpu = "22"
resvg = { version = "0.42", default-features = false }
2023-08-14 18:31:05 -04:00
pollster = "0.3.0"