Cargo Features
[dependencies]
qilin = { version = "0.3.2", default-features = false, features = ["minifb", "image", "serde", "store", "audio", "text"] }
- default = store
-
The
store
feature is set by default wheneverqilin
is added without
somewhere in the dependency tree.default-features = false - minifb
-
Exports internal minifb dependency
- image
-
Exports utility functions for converting images from the image crate to a qilin image
Enables bmp, ico, jpeg and png of image ^0.24.6
Affects
qilin::image
… - serde store = serde_json
-
Adds serde compatibility
- store default = serde
-
Adds data storing and player preferences. Also adds serde feature.
Enables serde of hashbrown ^0.14.0
Affects
game::store
… - audio
-
Audio functionalities
Enables kira ^0.8.4
Affects
qilin::audio
… - text
-
Text and Font rendering
Enables fontdue ^0.7.3
Affects
qilin::text
…
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.
- hashbrown store
-
Enables hashbrown ^0.14.0
- serde_json serde?