Cargo Features

[dependencies]
bevy_ecs = { version = "0.14.0-rc.2", default-features = false, features = ["trace", "multi_threaded", "bevy_debug_stepping", "bevy_reflect", "serde"] }
default = bevy_reflect

The bevy_reflect feature is set by default whenever bevy_ecs is added without default-features = false somewhere in the dependency tree.

trace
multi_threaded = arrayvec

Enables multi_threaded of bevy_tasks

bevy_debug_stepping

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.

bevy_reflect default

Affects bevy_ecs::reflect

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

arrayvec multi_threaded?