hUI/hui/Cargo.toml

106 lines
2.7 KiB
TOML
Raw Permalink Normal View History

2024-02-17 20:43:46 +00:00
[package]
name = "hui"
description = "Simple UI library for games and other interactive applications"
repository = "https://github.com/griffi-gh/hui"
2024-02-19 16:49:01 +00:00
readme = "../README.md"
2024-02-17 20:43:46 +00:00
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.80"
2024-03-25 17:41:44 +00:00
version = "0.1.0-alpha.5"
2024-02-17 20:43:46 +00:00
edition = "2021"
license = "GPL-3.0-or-later"
publish = true
2024-02-17 20:51:54 +00:00
include = [
"assets/**/*",
"src/**/*.rs",
"Cargo.toml",
]
2024-02-17 20:43:46 +00:00
[dependencies]
2024-03-25 17:41:44 +00:00
hui-derive = { version = "0.1.0-alpha.5", path = "../hui-derive", optional = true }
2024-08-04 16:06:49 +00:00
hui-shared = { version = "0.1.0-alpha.5", path = "../hui-shared" }
hui-painter = { version = "0.1.0-alpha.5", path = "../hui-painter" }
2024-02-17 20:43:46 +00:00
hashbrown = "0.14"
nohash-hasher = "0.2"
2024-08-04 16:06:49 +00:00
glam = "0.28.0"
fontdue = "0.9"
2024-02-17 20:43:46 +00:00
rect_packer = "0.2"
log = "0.4"
document-features = "0.2"
2024-02-26 00:15:55 +00:00
derive_setters = "0.1"
2024-03-21 21:23:42 +00:00
derive_more = "0.99"
2024-02-29 15:02:05 +00:00
tinyset = "0.4"
2024-03-24 21:55:05 +00:00
image = { version = "0.25", default-features = false, optional = true }
2024-08-04 16:06:49 +00:00
rustc-hash = "2.0"
2024-02-17 20:43:46 +00:00
[features]
2024-03-25 16:49:32 +00:00
default = ["el_all", "image", "builtin_font", "pixel_perfect_text", "derive"]
2024-03-24 21:55:05 +00:00
2024-03-25 16:49:32 +00:00
## Enable derive macros
derive = ["dep:hui-derive"]
2024-03-24 21:55:05 +00:00
## Enable image loading support using the `image` crate
image = ["dep:image"]
2024-03-24 19:58:14 +00:00
## Enable the built-in font (ProggyTiny, adds *35kb* to the executable)
2024-02-17 20:43:46 +00:00
builtin_font = []
2024-03-24 19:58:14 +00:00
#! #### Pixel-perfect rendering:
2024-02-20 16:30:26 +00:00
## Round all vertex positions to nearest integer coordinates (not recommended)
pixel_perfect = ["pixel_perfect_text"]
2024-03-24 20:01:30 +00:00
2024-02-20 16:30:26 +00:00
## Apply pixel-perfect rendering hack to text (fixes blurry text rendering)
pixel_perfect_text = []
2024-03-24 20:01:30 +00:00
2024-03-24 19:58:14 +00:00
#! Make sure to disable both features if you are not rendering UI "as-is" at 1:1 scale\
#! For exmaple, you should disable them if using DPI (or any other form of) scaling while passing the virtual resolution to the ui or rendering it in 3d space
2024-03-24 19:53:03 +00:00
#! #### Built-in elements:
## Enable all built-in elements
el_all = [
"el_container",
"el_frame_view",
2024-03-24 19:53:03 +00:00
"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 = []
2024-03-24 19:53:03 +00:00
## 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 = []
2024-02-20 16:30:26 +00:00
# ## Enable multi-threading support (currently only affects some 3rd-party libraries)
# parallel = ["fontdue/parallel"]