Cargo Features

[dependencies]
bevy_input = { version = "0.16.0-rc.3", default-features = false, features = ["bevy_reflect", "serialize", "smol_str", "std", "critical-section", "libm"] }
default = bevy_reflect, smol_str, std

These default features are set whenever bevy_input is added without default-features = false somewhere in the dependency tree.

Enables async_executor of bevy_ecs

bevy_ecs:

Executor Backend

Uses async-executor as a task execution backend. This backend is incompatible with no_std targets.

bevy_reflect default smol_str std

Functionality

Adds runtime reflection support using bevy_reflect.

Enables bevy_reflect and bevy_reflect of bevy_app, bevy_ecs, and bevy_math

bevy_app:

bevy

serialize = serde

Adds serialization support through serde.

Enables serde of smol_str ^0.2, serialize of bevy_ecs, bevy_math, and bevy_platform_support

smol_str default serialize?

Uses the small-string optimization provided by smol_str.

Enables smol_str ^0.2, smol_str of bevy_reflect

std default

Platform Compatibility

Allows access to the std crate. Enabling this feature will prevent compilation on no_std targets, but provides access to certain additional features on supported platforms.

Enables std of bevy_app, bevy_ecs, bevy_math, bevy_platform_support, bevy_reflect, and bevy_utils

critical-section

critical-section provides the building blocks for synchronization primitives on all platforms, including no_std.

Enables critical-section of bevy_app, bevy_ecs, bevy_platform_support, and optional bevy_reflect

libm

Uses the libm maths library instead of the one provided in std and core.

Enables libm of bevy_math

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

serde serialize?

Enables serde

other