glyphon/Cargo.toml

25 lines
670 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"
2025-12-05 22:32:23 +01:00
description = "Fast, simple 2D text rendering for wgpu. A fork of glyphon for iced."
2025-03-09 00:02:29 +01:00
version = "0.1.0"
2025-03-09 01:01:09 +01:00
edition = "2024"
2025-12-05 22:32:23 +01:00
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
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-10-31 14:03:21 +01:00
wgpu = { version = "27", default-features = false, features = ["wgsl"] }
etagere = "0.2"
2026-05-25 18:27:44 +02:00
cosmic-text = { path = "../cosmic-text" }
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