[package]
edition = "2024"
name = "ftui-widgets"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Widget library built on FrankenTUI render and layout."
homepage = "https://github.com/Dicklesworthstone/frankentui"
documentation = "https://docs.rs/ftui-widgets"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/Dicklesworthstone/frankentui"
resolver = "2"
[features]
debug-overlay = []
default = []
regex-search = ["dep:regex"]
state-persistence = ["dep:serde"]
tracing = [
"dep:tracing",
"ftui-render/tracing",
]
[lib]
name = "ftui_widgets"
path = "src/lib.rs"
[[test]]
name = "ahashmap_parity"
path = "tests/ahashmap_parity.rs"
[[test]]
name = "focus_integration"
path = "tests/focus_integration.rs"
[[test]]
name = "frame_integration"
path = "tests/frame_integration.rs"
[[test]]
name = "list_panic"
path = "tests/list_panic.rs"
[[test]]
name = "proptest_fenwick_invariants"
path = "tests/proptest_fenwick_invariants.rs"
[[test]]
name = "proptest_measurable_invariants"
path = "tests/proptest_measurable_invariants.rs"
[[test]]
name = "proptest_widget_rendering_invariants"
path = "tests/proptest_widget_rendering_invariants.rs"
[[test]]
name = "renderable_snapshots"
path = "tests/renderable_snapshots.rs"
[[test]]
name = "symlink_repro"
path = "tests/symlink_repro.rs"
[[test]]
name = "textarea_edge_cases"
path = "tests/textarea_edge_cases.rs"
[[test]]
name = "tracing_tests"
path = "tests/tracing_tests.rs"
[[bench]]
name = "hashmap_bench"
path = "benches/hashmap_bench.rs"
harness = false
[[bench]]
name = "widget_bench"
path = "benches/widget_bench.rs"
harness = false
[dependencies.ahash]
version = "0.8"
[dependencies.bitflags]
version = "2.10.0"
[dependencies.ftui-core]
version = "0.2.1"
[dependencies.ftui-layout]
version = "0.2.1"
[dependencies.ftui-render]
version = "0.2.1"
[dependencies.ftui-style]
version = "0.2.1"
[dependencies.ftui-text]
version = "0.2.1"
features = ["markup"]
[dependencies.regex]
version = "1.12.3"
optional = true
[dependencies.serde]
version = "1.0.227"
features = ["derive"]
optional = true
[dependencies.tracing]
version = "0.1.41"
optional = true
[dependencies.unicode-segmentation]
version = "1.12.0"
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.web-time]
version = "1.1.0"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.serde]
version = "1.0.227"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.tracing]
version = "0.1.41"
[dev-dependencies.tracing-subscriber]
version = "0.3.20"
features = ["registry"]