Cargo Features
[dependencies]
rbxm = { version = "0.3.0", default-features = false, features = ["std", "unstable", "mesh-format"] }
- default = std
-
The
std
feature is set by default wheneverrbxm
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enable support for features that require the standard library
Enables std of lz4_flex ^0.9, num, and uuid
num:
Needed for no_std float math
Affects
de::from_file
,ser::to_file
… - unstable
-
Enable support for features that require the nightly compiler
- mesh-format
-
Enable understanding of mesh data, instead of treating it as a binary blob
Affects
data::TriMesh
,data::ConvexHull
,instance::Model.model_mesh_data
,instance::TriangleMeshPart.physical_config_data
…