glyphon/Cargo.toml

19 lines
488 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"
2023-01-29 20:47:31 -05:00
version = "0.2.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]
2022-10-18 11:32:31 -04:00
wgpu = "0.14.0"
2022-05-09 08:49:10 -04:00
etagere = "0.2.6"
2023-01-29 20:34:01 -05:00
cosmic-text = { git = "https://github.com/pop-os/cosmic-text", rev = "a5903bb", features = ["std", "swash"] }
lru = "0.9"
2022-05-09 08:49:10 -04:00
[dev-dependencies]
2022-10-18 11:32:31 -04:00
winit = "0.27.0"
2022-05-14 21:09:52 -04:00
pollster = "0.2.5"