Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.
This repository was archived by the owner on Sep 25, 2025. It is now read-only.

Remove web cargo feature #55

@nuzzles

Description

@nuzzles

The web feature 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 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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions