[package]
edition = "2024"
name = "ftui-layout"
version = "0.4.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"
keywords = [
"tui",
"terminal",
"ui",
"ftui",
"frankentui",
]
categories = [
"command-line-interface",
"gui",
]
license-file = "LICENSE"
repository = "https://github.com/Dicklesworthstone/frankentui"
resolver = "2"
[lib]
name = "ftui_layout"
path = "src/lib.rs"
[[test]]
name = "coherence_bug"
path = "tests/coherence_bug.rs"
[[test]]
name = "e2e_incremental"
path = "tests/e2e_incremental.rs"
[[test]]
name = "golden_incremental"
path = "tests/golden_incremental.rs"
[[test]]
name = "layout_cache_ratio"
path = "tests/layout_cache_ratio.rs"
[[test]]
name = "overflow_bug"
path = "tests/overflow_bug.rs"
[[test]]
name = "overflow_repro"
path = "tests/overflow_repro.rs"
[[test]]
name = "pane_checkpoint_integration"
path = "tests/pane_checkpoint_integration.rs"
[[test]]
name = "pane_invariant_fuzz"
path = "tests/pane_invariant_fuzz.rs"
[[test]]
name = "pane_margin"
path = "tests/pane_margin.rs"
[[test]]
name = "pane_semantic_replay_harness"
path = "tests/pane_semantic_replay_harness.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 = "proptest_veb_tree_invariants"
path = "tests/proptest_veb_tree_invariants.rs"
[[test]]
name = "responsive_matrix"
path = "tests/responsive_matrix.rs"
[[bench]]
name = "layout_bench"
path = "benches/layout_bench.rs"
harness = false
[[bench]]
name = "pane_profile_harness"
path = "benches/pane_profile_harness.rs"
harness = false
[dependencies.ftui-core]
version = "0.4.0"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.serde]
version = "1.0.227"
features = ["derive"]
[dependencies.smallvec]
version = "1.15"
[dev-dependencies.blake3]
version = "1.6"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.ftui-render]
version = "0.4.0"
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.serde_json]
version = "1.0.145"