euv-example 0.4.1

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
[package]
name = "euv-example"
version = "0.4.1"
readme = "README.md"
edition = "2024"
authors = ["root@ltpp.vip"]
license = "MIT"
description = """An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly."""
keywords = ["cross-platform"]
repository = "https://github.com/euv-dev/euv.git"
categories = ["network-programming", "web-programming"]
exclude = [
  "target",
  "Cargo.lock",
  "sh",
  ".github",
  "logs",
  "img",
  "**/*.log",
  "www",
]

[dependencies]
euv = { workspace = true }
lombok-macros = { workspace = true }

[package.metadata.wasm-pack.profile.dev]
wasm-opt = false

[package.metadata.wasm-pack.profile.release]
wasm-opt = [
  "-Oz",
  "--enable-mutable-globals",
  "--enable-bulk-memory",
  "--enable-nontrapping-float-to-int",
]

[lib]
crate-type = ["cdylib"]