[package]
edition = "2021"
name = "fission-layout"
version = "0.11.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Layout engine primitives for Fission widget trees"
readme = "README.md"
keywords = [
"fission",
"layout",
"ui-framework",
"widgets",
"cross-platform",
]
categories = [
"gui",
"rendering",
]
license = "MIT"
repository = "https://github.com/fission-ui/fission"
[package.metadata.fission]
platforms = [
"android",
"ios",
"linux",
"macos",
"windows",
"web",
"terminal",
"static-site",
"ssr",
]
homepage = "https://fission.rs"
documentation = "https://fission.rs"
readme = "README.md"
[lib]
name = "fission_layout"
path = "src/lib.rs"
[[test]]
name = "alignment_layout_test"
path = "tests/alignment_layout_test.rs"
[[test]]
name = "box_layout_test"
path = "tests/box_layout_test.rs"
[[test]]
name = "incremental_layout_test"
path = "tests/incremental_layout_test.rs"
[[test]]
name = "layout_inspection"
path = "tests/layout_inspection.rs"
[[test]]
name = "scroll_layout_test"
path = "tests/scroll_layout_test.rs"
[[test]]
name = "text_measurement"
path = "tests/text_measurement.rs"
[[test]]
name = "wrap_layout_test"
path = "tests/wrap_layout_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.fission-diagnostics]
version = "0.11.1"
[dependencies.fission-ir]
version = "0.11.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]