mirror of
https://github.com/danbulant/appit
synced 2026-07-06 19:41:01 +00:00
Re-exporting rwh feature flags
This commit is contained in:
parent
0fa6a4b3a5
commit
657493a81d
2 changed files with 11 additions and 1 deletions
|
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Breaking Changes
|
||||||
|
|
||||||
|
- This crate no longer specifies a specific raw-window-handle flag for winit.
|
||||||
|
This crate will maintain feature flags that allow picking whatever versions
|
||||||
|
winit is exposing. As of writing this note, the choices are `rwh_05` and
|
||||||
|
`rwh_06`. `rwh_05` was the feature that was activated in v0.2.0.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- All `&Appplication` bounds now are `?Sized`, enabling `&dyn Application`
|
- All `&Appplication` bounds now are `?Sized`, enabling `&dyn Application`
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,9 @@ wayland-csd-adwaita = ["winit/wayland-csd-adwaita"]
|
||||||
x11 = ["winit/x11"]
|
x11 = ["winit/x11"]
|
||||||
wayland = ["winit/wayland"]
|
wayland = ["winit/wayland"]
|
||||||
wayland-dlopen = ["winit/wayland-dlopen"]
|
wayland-dlopen = ["winit/wayland-dlopen"]
|
||||||
|
rwh_06 = ["winit/rwh_06"]
|
||||||
|
rwh_05 = ["winit/rwh_05"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = { version = "0.29.3", default-features = false, features = ["rwh_05"] }
|
winit = { version = "0.29.3", default-features = false }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue