[dependencies]
[lib]
name = "ui_layout"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["gui"]
description = "A minimal Flexbox-inspired layout engine for Rust GUI"
edition = "2024"
keywords = ["layout", "gui", "flexbox", "ui"]
license = "MIT"
name = "ui_layout"
readme = "README.md"
repository = "https://github.com/098orin/ui_layout-rs"
version = "0.4.5"
[[test]]
name = "align_items"
path = "tests/align_items.rs"
[[test]]
name = "align_self"
path = "tests/align_self.rs"
[[test]]
name = "gap"
path = "tests/gap.rs"
[[test]]
name = "justfy_content"
path = "tests/justfy_content.rs"
[[test]]
name = "layout_auto_size"
path = "tests/layout_auto_size.rs"
[[test]]
name = "layout_basic"
path = "tests/layout_basic.rs"
[[test]]
name = "layout_spacing"
path = "tests/layout_spacing.rs"
[[test]]
name = "position"
path = "tests/position.rs"
[[test]]
name = "redistributing"
path = "tests/redistributing.rs"