[package]
edition = "2024"
name = "ui_layout"
version = "0.9.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal Flexbox-inspired layout engine for Rust GUI"
readme = "README.md"
keywords = [
"layout",
"gui",
"flexbox",
"ui",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/098orin/ui_layout-rs"
[lib]
name = "ui_layout"
path = "src/lib.rs"
[[example]]
name = "layout_bench"
path = "examples/layout_bench.rs"
[[example]]
name = "layout_flex_chain_bench"
path = "examples/layout_flex_chain_bench.rs"
[[test]]
name = "advanced_flexbox"
path = "tests/advanced_flexbox.rs"
[[test]]
name = "basic_layout"
path = "tests/basic_layout.rs"
[[test]]
name = "coordinate_system"
path = "tests/coordinate_system.rs"
[[test]]
name = "flex_basis"
path = "tests/flex_basis.rs"
[[test]]
name = "inline_layout"
path = "tests/inline_layout.rs"
[[test]]
name = "margin_collapsing"
path = "tests/margin_collapsing.rs"
[[test]]
name = "spacing_and_sizing"
path = "tests/spacing_and_sizing.rs"
[dependencies]