[package]
edition = "2024"
rust-version = "1.92"
name = "fret-ui"
version = "0.1.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mechanism-layer UI engine for Fret with tree, layout, focus, routing, and interaction contracts."
homepage = "https://github.com/Latias94/fret"
documentation = "https://docs.rs/fret"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/fret"
resolver = "2"
[features]
compat-retained-widgets = []
default = []
diagnostics = []
unstable-retained-bridge = []
[lib]
name = "fret_ui"
path = "src/lib.rs"
[dependencies.fret-core]
version = "0.1.0"
[dependencies.fret-perf]
version = "0.1.0"
[dependencies.fret-runtime]
version = "0.1.0"
[dependencies.fret-text-nav]
version = "0.1.0"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.slotmap]
version = "1"
[dependencies.smallvec]
version = "1"
[dependencies.stacksafe]
version = "1"
[dependencies.taffy]
version = "0.9.2"
features = [
"flexbox",
"grid",
]
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-ident]
version = "1.0.13"
[dependencies.unicode-segmentation]
version = "1.12.0"
[dependencies.virtualizer]
version = "0.4.0"
[lints.clippy]
arc_with_non_send_sync = "allow"
default_constructed_unit_structs = "allow"
field_reassign_with_default = "allow"
manual_clamp = "allow"
manual_contains = "allow"
question_mark = "allow"
redundant_locals = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_get_then_check = "allow"