glyphon/Cargo.toml

25 lines
582 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-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"
cosmic-text = "0.12"
lru = { version = "0.12.1", default-features = false }
rustc-hash = "2.0"
2022-05-09 10:19:10 -02:30
[dev-dependencies]
2025-01-22 20:26:52 -03:00
wgpu = "24"
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