b3d72e8d82
Add examples/html_examples as a copy-pasteable gallery for the first htmx-style HTML UX patterns using exact htmx URL slugs in the page and README. The slice covers click-to-edit, edit-row, delete-row, inline-validation, click-to-load, and active-search with .heml templates, generated resources, server-owned Rust state, and runtime-free selector targeting. req: htmx_equivalents/001 req: htmx_equivalents/002 req: examples/001
23 lines
501 B
TOML
23 lines
501 B
TOML
[package]
|
|
name = "hemx-html-examples"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
hemplate = { path = "../../../hemplate/hemplate" }
|
|
hemx = { path = "../../hemx" }
|
|
hemx-axum = { path = "../../hemx-axum" }
|
|
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
|
|
|
|
[dev-dependencies]
|
|
scraper = "0.23"
|
|
hemx-test = { path = "../../hemx-test" }
|
|
|
|
[build-dependencies]
|
|
hemx-build = { path = "../../hemx-build" }
|