[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.6.1"
[[test]]
name = "align"
path = "tests/align.rs"
[[test]]
name = "flex_grow"
path = "tests/flex_grow.rs"
[[test]]
name = "gap"
path = "tests/gap.rs"
[[test]]
name = "justify_content"
path = "tests/justify_content.rs"
[[test]]
name = "layout_tests"
path = "tests/layout_tests.rs"
[[test]]
name = "normal"
path = "tests/normal.rs"
[[test]]
name = "spacing"
path = "tests/spacing.rs"