Cargo Features

[dependencies]
mesh-loader = { version = "0.1.7", default-features = false, features = ["stl", "collada", "obj"] }
default = collada, obj, stl

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

stl default

STL (.stl) https://en.wikipedia.org/wiki/STL_(file_format)

Affects mesh-loader::stl, utils::float

collada default = roxmltree

COLLADA (.dae) https://en.wikipedia.org/wiki/COLLADA

Affects mesh-loader::collada, utils::int, utils::float

obj default

Wavefront OBJ (.obj) https://en.wikipedia.org/wiki/Wavefront_.obj_file

Affects mesh-loader::obj, utils::int, utils::float

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.

roxmltree collada

Enables roxmltree

Used in COLLADA parsing.