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
Because `wasm_bindgen` enables a hobbled `std` mode by default
(where you can "use" the full std, but random bits of it panic),
`wasm_bindgen` users really should use `no_std` builds where
possible. However, cargo makes this very difficult - crates with
`no_std` flags can be silently made `std` just by one dependency
setting the flag silently.
This happens here by leaving default-features enabled. Luckily, we
can simply disable `default-features` and everything else remains.
0 commit comments