dioxus-element-plug 0.1.2

Element UI theme-chalk components for Dioxus applications with built-in SCSS support
[package]
name = "dioxus-element-plug"
version = "0.1.2"
edition = "2021"
authors = ["Paul Johnson"]
description = "Element UI theme-chalk components for Dioxus applications with built-in SCSS support"
license = "MIT"
repository = "https://github.com/pauljohn21/dioxus-element-plug"
documentation = "https://docs.rs/dioxus-element-plug"
homepage = "https://github.com/pauljohn21/dioxus-element-plug"
keywords = ["dioxus", "ui", "components", "element-ui", "scss"]
categories = ["web-programming", "gui"]
readme = "README.md"

# Files to exclude from the published package
exclude = [
  "examples/*",
  "dist/*", 
  ".github/*",
  "*.txt",
  "Makefile",
  "DIOXUS_*.md",
  "GITHUB_*.md",
  "PUSH_*.md",
  "SCSS_*.md",
  "PROJECT_*.md",
  "OPTIMIZATION_*.md",
  "CHANGELOG.md",
]

[package.metadata.docs.rs]
# Enable only the minimal features needed for documentation generation
features = []
all-features = false
# Disable default features to avoid unnecessary dependencies in docs
no-default-features = true
# Target platform for documentation generation
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]

[features]
default = []
server = ["dioxus/server"]
web = ["dioxus/web"]
# Feature for documentation generation - minimal dependencies
docs = []  # Minimal feature set for documentation generation

[build-dependencies]

[dependencies]
dioxus = { version = "0.7", features = ["web"] }
manganis = { version = "0.7.9", features = ["dioxus"] }

[dev-dependencies]
dioxus = { version = "0.7", features = ["web"] }
console_error_panic_hook = "0.1"

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"