mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-09 17:38:42 -06:00
30 lines
662 B
TOML
30 lines
662 B
TOML
[package]
|
|
name = "hui"
|
|
description = "Simple UI library for games and other interactive applications"
|
|
repository = "https://github.com/griffi-gh/hui"
|
|
authors = ["griffi-gh <prasol258@gmail.com>"]
|
|
rust-version = "1.75"
|
|
version = "0.1.0-alpha.1"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
publish = true
|
|
include = [
|
|
"assets/**/*",
|
|
"src/**/*.rs",
|
|
"Cargo.toml",
|
|
]
|
|
|
|
[dependencies]
|
|
hashbrown = "0.14"
|
|
nohash-hasher = "0.2"
|
|
glam = "0.25"
|
|
fontdue = "0.8"
|
|
rect_packer = "0.2"
|
|
log = "0.4"
|
|
|
|
[features]
|
|
default = ["builtin_elements", "builtin_font"]
|
|
builtin_font = []
|
|
builtin_elements = []
|
|
#parallel = ["dep:rayon", "fontdue/parallel"]
|