Cargo Features

[dependencies]
bevy_query_ext = { version = "0.6.0", default-features = false, features = ["std", "libm", "critical-section", "web", "all_docs"] }
default = std

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

std default

Enables std of bevy

bevy:

Allows access to the std crate.

libm

Enables libm of bevy

bevy:

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

critical-section

Enables critical-section of bevy

bevy:

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

web

Enables web of bevy

bevy:

Enables use of browser APIs. Note this is currently only applicable on wasm32 architectures.

all_docs

Enables paste

bevy_query_ext has 6 features without comments.