Cargo Features
[dependencies]
input-actions = { version = "0.1.1", default-features = false, features = ["log", "winit"] }
- default = log, winit
-
These default features are set whenever
input-actions
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.
- log default
- winit default
-
Enables winit ^0.26
Affects
input-actions::winit
…