glyphon/Cargo.toml

21 lines
612 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"
2024-01-17 20:30:28 -03:30
version = "0.5.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]
wgpu = { version = "0.19", default-features = false, features = ["wgsl"] }
2023-11-19 18:26:16 -05:00
etagere = "0.2.10"
cosmic-text = "0.11"
lru = { version = "0.12.1", default-features = false }
rustc-hash = "1.1"
2022-05-09 10:19:10 -02:30
[dev-dependencies]
2024-01-15 16:03:02 -03:30
winit = { version = "0.29.10", features = ["rwh_05"] }
wgpu = { version = "0.19", default-features = true }
2023-08-14 15:31:05 -07:00
pollster = "0.3.0"