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 wheneverbevy_query_ext
is added without
somewhere in the dependency tree.default-features = false - std default
-
bevy:
Allows access to the
std
crate. - libm
-
bevy:
Uses the
libm
maths library instead of the one provided instd
andcore
. - critical-section
-
Enables critical-section of bevy
bevy:
critical-section
provides the building blocks for synchronization primitives on all platforms, includingno_std
. - web
-
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.