bevy/crates/bevy_platform_support
Zachary Harrold c6204279eb
Support for non-browser wasm (#17499)
# Objective

- Contributes to #15460
- Supersedes #8520
- Fixes #4906

## Solution

- Added a new `web` feature to `bevy`, and several of its crates.
- Enabled new `web` feature automatically within crates without `no_std`
support.

## Testing

- `cargo build --no-default-features --target wasm32v1-none`

---

## Migration Guide

When using Bevy crates which _don't_ automatically enable the `web`
feature, please enable it when building for the browser.

## Notes

- I added [`cfg_if`](https://crates.io/crates/cfg-if) to help manage
some of the feature gate gore that this extra feature introduces. It's
still pretty ugly, but I think much easier to read.
- Certain `wasm` targets (e.g.,
[wasm32-wasip1](https://doc.rust-lang.org/nightly/rustc/platform-support/wasm32-wasip1.html#wasm32-wasip1))
provide an incomplete implementation for `std`. I have not tested these
platforms, but I suspect Bevy's liberal use of usually unsupported
features (e.g., threading) will cause these targets to fail. As such,
consider `wasm32-unknown-unknown` as the only `wasm` platform with
support from Bevy for `std`. All others likely will need to be treated
as `no_std` platforms.
2025-03-07 21:22:28 +00:00
..
src Support for non-browser wasm (#17499) 2025-03-07 21:22:28 +00:00
Cargo.toml Support for non-browser wasm (#17499) 2025-03-07 21:22:28 +00:00
LICENSE-APACHE Cleanup publish process (#17728) 2025-02-09 17:46:19 +00:00
LICENSE-MIT Cleanup publish process (#17728) 2025-02-09 17:46:19 +00:00
README.md Add no_std support to bevy (#17955) 2025-03-07 03:39:46 +00:00

Bevy Platform Support

License Crates.io Downloads Docs Discord

Rust is a fantastic multi-platform language with extensive support for modern targets through its standard library. However, some items within the standard library have alternatives that are better suited for Bevy and game engines in general. Additionally, to support embedded and other esoteric platforms, it's often necessary to shed reliance on std, making your crate no_std.

These needs are handled by this crate, bevy_platform_support. The goal of this crate is to provide alternatives and extensions to the Rust standard library which minimize friction when developing with and for Bevy across multiple platforms.

Getting Started

Like any dependency from crates.io, use cargo to add it to your Cargo.toml file:

cargo add bevy_platform_support

Now, instead of importing from std you can use bevy_platform_support for items it has alternative for. See the documentation for what items are available, and explanations for why you may want to use them.

no_std Support

By default, bevy_platform_support will activate the std feature, requiring access to the std crate for whichever platforms you're targeting. To use this crate on no_std platforms, disable default features:

bevy_platform_support = { version = "x.y.z", default-features = false }

Features

std (default)

Enables usage of the standard library. Note that where this crate has alternatives to the standard library that it considers better than what's provided, it will provide the alternative even when std is enabled. This is explicitly incompatible with no_std targets.

alloc (default)

Enables usage of the alloc crate. Note that this feature is automatically enabled when enabling std. This is compatible with most no_std targets, but not all.

critical-section

Switches to using critical-section as a backend for synchronization. You may need to enable this feature on platforms with little to no support for atomic operations.