[package]
edition = "2021"
name = "azul-core"
version = "0.0.7"
authors = ["Felix Schütt <felix.schuett@maps4print.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Common datatypes used for the Azul document object model, shared across all azul-* crates
"""
homepage = "https://azul.rs/"
readme = false
keywords = [
"gui",
"GUI",
"user-interface",
]
categories = ["gui"]
license = "MPL-2.0"
repository = "https://github.com/maps4print/azul"
resolver = "2"
[features]
css_parser = ["azul-css/parser"]
default = ["std"]
font_parsing = ["rust-fontconfig/parsing"]
std = ["css_parser"]
[lib]
name = "azul_core"
path = "src/lib.rs"
[[test]]
name = "cascade"
path = "tests/cascade.rs"
[[test]]
name = "css_inheritance"
path = "tests/css_inheritance.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "dom_manipulation"
path = "tests/dom_manipulation.rs"
[[test]]
name = "node_id_encoding"
path = "tests/node_id_encoding.rs"
[[test]]
name = "prop_cache"
path = "tests/prop_cache.rs"
[[test]]
name = "restyle_unified"
path = "tests/restyle_unified.rs"
[[test]]
name = "styled_dom_append"
path = "tests/styled_dom_append.rs"
[dependencies.azul-css]
version = "0.0.7"
features = ["parser"]
default-features = false
[dependencies.gl-context-loader]
version = "0.1.9"
default-features = false
[dependencies.highway]
version = "1.3.0"
default-features = false
[dependencies.libm]
version = "0.2.2"
default-features = false
[dependencies.rust-fontconfig]
version = "2.0.0"
features = [
"std",
"parsing",
]
default-features = false