[package]
edition = "2024"
name = "ftui-layout"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flex and grid layout solvers for FrankenTUI."
homepage = "https://github.com/Dicklesworthstone/frankentui"
documentation = "https://docs.rs/ftui-layout"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Dicklesworthstone/frankentui"
resolver = "2"
[lib]
name = "ftui_layout"
path = "src/lib.rs"
[[test]]
name = "layout_cache_ratio"
path = "tests/layout_cache_ratio.rs"
[[test]]
name = "overflow_repro"
path = "tests/overflow_repro.rs"
[[test]]
name = "proptest_layout_invariants"
path = "tests/proptest_layout_invariants.rs"
[[test]]
name = "proptest_nonoverlap_invariants"
path = "tests/proptest_nonoverlap_invariants.rs"
[[test]]
name = "responsive_matrix"
path = "tests/responsive_matrix.rs"
[[bench]]
name = "layout_bench"
path = "benches/layout_bench.rs"
harness = false
[dependencies.ftui-core]
version = "0.2.0"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.serde]
version = "1.0.227"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.serde_json]
version = "1.0.145"