Cargo Features
[dependencies]
glitter = { version = "0.1.2", default-features = false, features = ["nalgebra", "cgmath", "image"] }
- default = cgmath, image
-
These default features are set whenever
glitter
is added without
somewhere in the dependency tree.default-features = false
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.
- nalgebra implicit feature
-
Enables nalgebra ^0.10.0
- cgmath default
-
Enables cgmath ^0.11.0
- image default
-
Enables image ^0.10.3