azul-layout 0.0.5

Layout solver + font and image loader the Azul GUI framework
Documentation
# Handles the layout as well as text layout, font decoding and 
# image layout / image decoding. 
# 
# Intermediary crate for if you need font and image loading,
# these cannot be in the core or css crates, because that would make 
# those crate unnecessarily heavy

[package]
name = "azul-layout"
version = "0.0.5"
authors = ["Felix Schütt <felix.schuett@maps4print.com>"]
license = "MPL-2.0"
description = "Layout solver + font and image loader the Azul GUI framework"
homepage = "https://azul.rs/"
keywords = ["gui", "user-interface", "svg", "graphics", "css" ]
categories = ["gui"]
repository = "https://github.com/maps4print/azul"
edition = "2021"
autoexamples = false

[dependencies]
azul-css                = { version = "0.0.5", path = "../css", default-features = false, features = ["parser"] }
azul-core               = { version = "0.0.5", path = "../core", default-features = false }
image                   = { version = "0.25", default-features = false }
rust-fontconfig         = { version = "1.0.0", default-features = false }

unicode-normalization   = { version = "0.1.21",  default-features = false, optional = true }
allsorts-subset-browser = { version = "0.16.0",  default-features = false, features = ["flate2_rust"], optional = true  }
tinyvec                 = { version = "1.6.0", default-features = false, optional = true  }
ttf-parser              = { version = "0.15.2", default-features = false, features = ["variable-fonts"], optional = true  }
lyon                    = { version = "0.17.10",  default-features = false, optional = true }
usvg                    = { version = "0.22.0",   default-features = false, optional = true, features = ["export"] }
resvg                   = { version = "0.22.0",   default-features = false, optional = true }
tiny-skia               = { version = "0.6.5",    default-features = false, optional = true, features = ["libm"] }
geo-booleanop           = { version = "0.2.1", default-features = false, optional = true }
geo                     = { version = "0.26.0", default-features = false, optional = true }
roxmltree               = { version = "0.14.0",   default-features = false, optional = true }
xmlwriter               = { version = "0.1.0",    default-features = false, optional = true }
xmlparser               = { version = "0.13.3",   default-features = false, optional = true }
gl-context-loader       = { version = "0.1.8", default-features = false, optional = true }

[features]
default = ["std", "text_layout", "font_loading", "svg", "xml"]
std = []
text_layout = ["unicode-normalization", "allsorts-subset-browser", "tinyvec", "ttf-parser"]
gif = ["image/gif"]
jpeg = ["image/jpeg"]
png = ["image/png"]
tiff = ["image/tiff"]
bmp = ["image/bmp"]
ico = ["image/ico"]
tga = ["image/tga"]
hdr = ["image/hdr"]
webp = ["image/webp"]
pnm = ["image/pnm"]
font_loading = []
xml = ["roxmltree", "xmlwriter", "xmlparser"]
svg = ["lyon", "tiny-skia", "usvg", "resvg", "xml", "geo-booleanop", "geo", "gl-context-loader"]