All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 12m7s
Port AutoScroll and Headline scroll logic from Vue/JS to Rust compiled to WASM via wasm-pack. Add multi-stage Docker build for WASM compilation, Vite WASM plugins, and top-level await for WASM init. Enable Hasura service in docker-compose. Move bookmarks from a separate route to an inline sidebar component on the home page. Fix ToggleHeader click propagation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
413 B
TOML
26 lines
413 B
TOML
[package]
|
|
name = "stp_wasm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
js-sys = "0.3.85"
|
|
wasm-bindgen = "0.2.108"
|
|
web-sys = { version = "0.3.85", features = [
|
|
"console",
|
|
"Document",
|
|
"Element",
|
|
"HtmlElement",
|
|
"Window",
|
|
"Animation",
|
|
"CssStyleDeclaration",
|
|
"ResizeObserver",
|
|
"ResizeObserverEntry",
|
|
"ResizeObserverSize",
|
|
"EventTarget",
|
|
"MouseEvent",
|
|
] }
|