[package]
name = "azulc"
version = "0.0.3"
authors = ["Felix Schütt <felix.schuett@maps4print.com>"]
license = "MIT"
description = '''
Azul XML-to-Rust compiler (and library)
'''
homepage = "https://azul.rs/"
keywords = ["gui", "GUI", "user-interface"]
categories = ["gui"]
repository = "https://github.com/maps4print/azul"
edition = "2018"
[lib]
crate-type = ["rlib", "cdylib"]
path = "src/lib.rs"
[[bin]]
name = "azulc"
path = "src/main.rs"
[dependencies]
gleam = { version = "0.11.0", default-features = false }
xmlparser = { version = "0.9.0", default-features = false }
azul-core = { version = "0.0.2", default-features = false, features = ["opengl"] }
azul-css = { version = "0.0.1", default-features = false }
azul-css-parser = { version = "0.0.1", default-features = false }
azul-layout = { version = "0.0.4", default-features = false }
image = { version = "0.21.2", default-features = false, optional = true, features = ["gif_codec", "jpeg", "png_codec", "tiff", "bmp"] }
font-loader = { version = "0.8.0", default-features = false, optional = true }
[features]
default = ["text_layout", "image_loading", "font_loading"]
image_loading = ["image"]
ico = ["image/ico"]
tga = ["image/tga"]
hdr = ["image/hdr"]
jpeg_rayon = ["image/jpeg_rayon"]
dxt = ["image/dxt"]
webp = ["image/webp"]
pnm = ["image/pnm"]
font_loading = ["font-loader"]
text_layout = ["azul-layout/text_layout"]