glyphon/Cargo.toml

19 lines
488 B
TOML
Raw Normal View History

2022-05-09 10:19:10 -02:30
[package]
name = "glyphon"
description = "Fast, simple 2D text rendering for wgpu"
2023-01-29 22:17:31 -03:30
version = "0.2.0"
2022-05-09 10:19:10 -02:30
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 13:02:31 -02:30
wgpu = "0.14.0"
2022-05-09 10:19:10 -02:30
etagere = "0.2.6"
2023-03-19 15:05:53 +01:00
cosmic-text = { git = "https://github.com/pop-os/cosmic-text", rev = "e788c17", features = ["std", "swash"] }
lru = "0.9"
2022-05-09 10:19:10 -02:30
[dev-dependencies]
2022-10-18 13:02:31 -02:30
winit = "0.27.0"
2022-05-14 22:39:52 -02:30
pollster = "0.2.5"