[package]
name = "layout-cat"
version = "0.1.0"
edition = "2024"
description = "Box-model layout: cascade + block layout over a dom-cat tree using css-cat stylesheets. Produces a LayoutBox tree with positions and dimensions. No mut, no Rc/Arc, no interior mutability, no panics, exhaustive matches. Fourth sub-crate of a Servo-replacement webview runtime targeting Tauri."
license = "MIT OR Apache-2.0"
keywords = ["layout", "css", "box-model", "block", "type-driven"]
categories = ["web-programming"]
[dependencies]
dom-cat = "0.1"
css-cat = "0.1"
[dev-dependencies]
proptest = "1"
html-cat = "0.1"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
needless_pass_by_value = "warn"
manual_map = "warn"