glyphon/Cargo.toml

24 lines
563 B
TOML
Raw Normal View History

2022-05-09 10:19:10 -02:30
[package]
2025-03-09 00:02:29 +01:00
name = "cryoglyph"
2022-05-09 10:19:10 -02:30
description = "Fast, simple 2D text rendering for wgpu"
2025-03-09 00:02:29 +01:00
version = "0.1.0"
2025-03-09 01:01:09 +01:00
edition = "2024"
2025-03-09 00:02:29 +01:00
repository = "https://github.com/iced-rs/cryoglyph"
2022-05-09 10:19:10 -02:30
license = "MIT OR Apache-2.0 OR Zlib"
[dependencies]
2025-07-22 02:37:58 +02:00
wgpu = { version = "26", default-features = false, features = ["wgsl"] }
etagere = "0.2"
2025-04-09 18:31:38 +02:00
cosmic-text = "0.14"
lru = { version = "0.16", default-features = false }
2025-07-22 02:37:58 +02:00
rustc-hash = "2"
2022-05-09 10:19:10 -02:30
[dev-dependencies]
winit = "0.30"
2024-10-30 11:59:19 -04:00
pollster = "0.4"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "prepare"
harness = false