7a44c3ee9e
Add a real browser smoke for the workout exemplar that checks phone and wide viewport hierarchy, thumb-sized primary action, hidden host proof panel, and recovery interactions through hemx runtime. req: examples/001 req: local/001 req: host/002
29 lines
742 B
TOML
29 lines
742 B
TOML
[package]
|
|
name = "hemx-workout-example"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "hemx-workout-example"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
hemplate = { path = "../../../hemplate/hemplate" }
|
|
hemx = { path = "../../hemx" }
|
|
hemx-axum = { path = "../../hemx-axum" }
|
|
hemx-host = { path = "../../hemx-host" }
|
|
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
|
|
|
|
[dev-dependencies]
|
|
hemx-test = { path = "../../hemx-test" }
|
|
thirtyfour = { version = "0.36", default-features = false, features = ["rustls-tls"] }
|
|
tokio = { version = "1", features = ["macros", "process", "time"] }
|
|
|
|
[build-dependencies]
|
|
hemx-build = { path = "../../hemx-build" }
|