[package]
edition = "2024"
name = "ui_layout"
version = "0.11.0"
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 = [
"flexbox",
"gui",
"layout",
"ui",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/098orin/ui_layout-rs"
[features]
layout-bench = []
unstable = []
[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 = "block_layout"
path = "tests/block_layout.rs"
[[test]]
name = "block_layouter"
path = "tests/block_layouter.rs"
[[test]]
name = "coordinate_system"
path = "tests/coordinate_system.rs"
[[test]]
name = "display"
path = "tests/display.rs"
[[test]]
name = "flex_layout"
path = "tests/flex_layout.rs"
[[test]]
name = "flex_reverse"
path = "tests/flex_reverse.rs"
[[test]]
name = "flow_object"
path = "tests/flow_object.rs"
[[test]]
name = "inline_layout"
path = "tests/inline_layout.rs"
[[test]]
name = "mixed_layout"
path = "tests/mixed_layout.rs"
[[test]]
name = "spacing"
path = "tests/spacing.rs"