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-01-22 20:26:52 -03:00
|
|
|
wgpu = { version = "24", default-features = false, features = ["wgsl"] }
|
2023-11-19 18:26:16 -05:00
|
|
|
etagere = "0.2.10"
|
2024-07-08 07:52:33 -05:00
|
|
|
cosmic-text = "0.12"
|
2024-03-30 02:17:39 +01:00
|
|
|
lru = { version = "0.12.1", default-features = false }
|
2024-07-08 07:52:33 -05:00
|
|
|
rustc-hash = "2.0"
|
2022-05-09 10:19:10 -02:30
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-01-22 20:26:52 -03:00
|
|
|
wgpu = "24"
|
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
|