Cargo Features
[dependencies]
thyme = { version = "0.7.0", default-features = false, features = ["glium_backend", "wgpu_backend", "gl_backend", "image"] }
- default = image
-
The
image
feature is set by default wheneverthyme
is added without
somewhere in the dependency tree.default-features = false - glium_backend = glium
-
Affects
app_builder::GliumApp
… - wgpu_backend = bytemuck, futures, wgpu
-
Affects
app_builder::WgpuApp
… - gl_backend = gl, glutin, memoffset
-
Affects
app_builder::GlApp
…
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.
- image default
-
Enables image ^0.24
- glium glium_backend?
-
Enables glium ^0.32
- wgpu wgpu_backend?
-
Enables wgpu ^0.15
- futures wgpu_backend?
- bytemuck wgpu_backend?
- gl gl_backend?
- glutin gl_backend?
-
Enables glutin ^0.29
- memoffset gl_backend?
-
Enables memoffset ^0.8