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 Sep 25, 2025. It is now read-only.
The reason I say the feature is pointless is because the web feature does not add or make decisions about implementation, it just allows it to work on wasm32, which could be handled with target_arch flags instead (no cargo feature necessary).
The
webfeature seems pointless, you could replace all instances of:#[cfg(all(target_arch = "wasm32", target_os = "unknown", feature = "web"))]with
#[cfg(target_arch = "wasm32")]The reason I say the feature is pointless is because the
webfeature does not add or make decisions about implementation, it just allows it to work on wasm32, which could be handled with target_arch flags instead (no cargo feature necessary).