1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-03 22:46:28 -05:00
hUI/hui/Cargo.toml

89 lines
2.1 KiB
TOML

[package]
name = "hui"
description = "Simple UI library for games and other interactive applications"
keywords = ["ui", "gui", "portable", "gamedev", "hui"]
categories = ["no-std", "gui", "game-development"]
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.85"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true
include = [
"src/**/*.rs",
"Cargo.toml",
]
[dependencies]
hui-derive = { version = "0.1.0-alpha.7", path = "../hui-derive", optional = true }
hui-shared = { version = "0.1.0-alpha.7", path = "../hui-shared" }
hui-painter = { version = "0.1.0-alpha.7", path = "../hui-painter" }
hashbrown = "0.15"
nohash-hasher = "0.2"
glam = "0.30"
document-features = "0.2"
derive_setters = "0.1"
derive_more = { version = "2.0", features = [ "full" ] }
tinyset = "0.5"
rustc-hash = "2.0"
[features]
default = ["el_all", "derive", "default-font"]
## Enable the default font (Proggy tiny, \~35kb)
default-font = ["hui-painter/default-font"]
## Enable derive macros
derive = ["dep:hui-derive"]
#! #### Built-in elements:
## Enable all built-in elements
el_all = [
"el_container",
"el_frame_view",
"el_spacer",
"el_br",
"el_text",
"el_image",
"el_progress_bar",
"el_slider",
"el_transformer",
"el_interactable",
]
## Enable the built-in `Container` element
el_container = []
## Enable the built-in `FrameView` element
el_frame_view = []
## Enable the built-in `Spacer` element
el_spacer = []
## Enable the built-in `Break` element
el_br = []
## Enable the built-in `Text` element
el_text = []
## Enable the built-in `Image` element
el_image = []
## Enable the built-in `ProgressBar` element
el_progress_bar = []
## Enable the built-in `Slider` element
el_slider = []
## Enable the built-in `Transformer` element
el_transformer = []
## Enable the built-in `Interactable` element
el_interactable = []
# ## Enable multi-threading support (currently only affects some 3rd-party libraries)
# parallel = ["fontdue/parallel"]