twill 0.2.0

Idiomatic Rust styling library inspired by Tailwind CSS for GUI
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "twill"
version = "0.2.0"
authors = ["FerrisMind"]
build = false
exclude = [
    "docs/",
    "mdbook-build/",
    "PLAN.md",
    "README.RU.md",
    "README.PT_BR.md",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Idiomatic Rust styling library inspired by Tailwind CSS for GUI"
homepage = "https://github.com/FerrisMind/twill"
documentation = "https://docs.rs/twill"
readme = "README.md"
keywords = [
    "styling",
    "tailwind",
    "gui",
    "egui",
    "iced",
]
categories = [
    "gui",
    "rendering",
]
license = "MIT"
repository = "https://github.com/FerrisMind/twill"

[features]
default = []
egui = ["dep:egui"]
iced = ["dep:iced"]
slint = ["dep:slint"]

[lib]
name = "twill"
path = "src/lib.rs"

[[example]]
name = "demo"
path = "examples/demo.rs"

[[example]]
name = "demo-egui"
path = "examples/demo-egui.rs"
required-features = ["egui"]

[[example]]
name = "demo-iced"
path = "examples/demo-iced.rs"
required-features = ["iced"]

[[example]]
name = "demo-slint"
path = "examples/demo-slint.rs"
required-features = ["slint"]

[dependencies.egui]
version = "0.33"
optional = true

[dependencies.iced]
version = "0.14"
features = ["advanced"]
optional = true

[dependencies.slint]
version = "1.15"
optional = true

[dev-dependencies.eframe]
version = "0.33"
features = ["glow"]
default-features = false

[dev-dependencies.image]
version = "0.25"
features = ["png"]
default-features = false

[profile.release]
lto = true
codegen-units = 1
strip = true