hUI/hui-painter-wip/Cargo.toml

25 lines
709 B
TOML
Raw Permalink Normal View History

2024-08-04 11:06:49 -05:00
[package]
name = "hui-painter-wip"
description = "UI rendering middleware for hUI, abstracts away triangulation, text layout and rendering and all the other hard stuff."
2024-08-04 11:06:49 -05:00
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.75"
version = "0.1.0-alpha.5"
edition = "2021"
license = "GPL-3.0-or-later"
publish = false # TODO: change to true once ready
2024-08-04 11:06:49 -05:00
include = [
"src/**/*.rs",
"Cargo.toml",
]
[dependencies]
hui-shared = { version = "0.1.0-alpha.5", path = "../hui-shared" }
2024-12-11 13:17:34 -06:00
glam = "0.29"
log = "0.4"
rect_packer = "0.2" # TODO: use sth else like `crunch` instead?
2024-12-11 13:32:31 -06:00
hashbrown = "0.15"
nohash-hasher = "0.2"
2024-09-20 16:19:56 -05:00
fontdue = "0.9"