You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 25, 2025. It is now read-only.
A topic that recently came up in #wg-wasm on Discord was that a wasm-pack project was performance much more slowly than a raw rustc-generated wasm file. It turned out to be related to opt-level = 's' in Cargo.toml, causing a nearly 3x (!) slowdown compared to -C opt-level=3 (the default).
I'm not sure how often this comes up in the wild though. Unfortunately there's not really a silver bullet here :(. I figured it'd be good to catalog though!