[package]
edition = "2024"
rust-version = "1.89"
name = "zenlayout"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Image layout computation with constraint modes, orientation, and decoder negotiation"
readme = "README.md"
keywords = [
"image",
"layout",
"resize",
"crop",
"orientation",
]
categories = [
"graphics",
"multimedia::images",
"no-std",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/imazen/zenlayout"
[features]
alloc = []
default = ["std"]
riapi = ["alloc"]
smart-crop = ["alloc"]
std = ["alloc"]
svg = ["std"]
[lib]
name = "zenlayout"
path = "src/lib.rs"
[[test]]
name = "immediate_vs_fused"
path = "tests/immediate_vs_fused.rs"
[[test]]
name = "riapi_parity"
path = "tests/riapi_parity.rs"