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"] }
|
2025-07-22 02:25:09 +02:00
|
|
|
etagere = "0.2"
|
2025-04-09 18:31:38 +02:00
|
|
|
cosmic-text = "0.14"
|
2025-07-22 02:25:09 +02:00
|
|
|
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]
|
2024-07-25 13:05:55 -05:00
|
|
|
winit = "0.30"
|
2024-10-30 11:59:19 -04:00
|
|
|
pollster = "0.4"
|
2024-11-28 22:36:23 +09:00
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "prepare"
|
|
|
|
|
harness = false
|