cryoglyph/Cargo.toml
Billy Messenger 6b566c5eb1
update example to use winit 0.30 (#105)
* update example to use winit 0.30

* omit unneeded field in example
2025-03-09 00:50:23 +01:00

24 lines
582 B
TOML

[package]
name = "cryoglyph"
description = "Fast, simple 2D text rendering for wgpu"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/iced-rs/cryoglyph"
license = "MIT OR Apache-2.0 OR Zlib"
[dependencies]
wgpu = { version = "24", default-features = false, features = ["wgsl"] }
etagere = "0.2.10"
cosmic-text = "0.12"
lru = { version = "0.12.1", default-features = false }
rustc-hash = "2.0"
[dev-dependencies]
wgpu = "24"
winit = "0.30"
pollster = "0.4"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "prepare"
harness = false