Remove mention of eventloop-winit-all

There's no -all suffix anymore
This commit is contained in:
Simon Hausmann 2022-07-26 17:00:37 +02:00 committed by Simon Hausmann
parent 3777785e0c
commit 96372d5dde
3 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ All notable changes to this project are documented in this file.
- `mod` now works on any numeric type, not only integers. - `mod` now works on any numeric type, not only integers.
- Minimum rust version is now 1.60 - Minimum rust version is now 1.60
- The "backend-gl-*" Rust crate features for configuring the GL renderer have been - The "backend-gl-*" Rust crate features for configuring the GL renderer have been
split up into "eventloop-winit-all/x11/wayland" and "renderer-femtovg". The old split up into "eventloop-winit/x11/wayland" and "renderer-femtovg". The old
names are still available for compatibility. names are still available for compatibility.
### Added ### Added

View file

@ -48,11 +48,11 @@ backend-gl-wayland = ["eventloop-winit-wayland", "renderer-femtovg"]
## this feature and select one of the other specific `eventloop-winit-XX` features. ## this feature and select one of the other specific `eventloop-winit-XX` features.
eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"] eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"]
## Simliar to `eventloop-winit-all` this enables the winit based event loop but only ## Simliar to `eventloop-winit` this enables the winit based event loop but only
## with support for the X Window System on Unix. ## with support for the X Window System on Unix.
eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"] eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"]
## Simliar to `eventloop-winit-all` this enables the winit based event loop but only ## Simliar to `eventloop-winit` this enables the winit based event loop but only
## with support for the Wayland window system on Unix. ## with support for the Wayland window system on Unix.
eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"] eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"]

View file

@ -19,7 +19,7 @@ path = "lib.rs"
[features] [features]
default = ["std", "eventloop-winit-all", "renderer-femtovg", "backend-qt", "compat-0-2-0"] default = ["std", "eventloop-winit", "renderer-femtovg", "backend-qt", "compat-0-2-0"]
## Mandatory feature: ## Mandatory feature:
## This feature is required to keep the compatibility with Slint 0.2.0 ## This feature is required to keep the compatibility with Slint 0.2.0
@ -54,11 +54,11 @@ backend-gl-wayland = ["eventloop-winit-wayland", "renderer-femtovg"]
## this feature and select one of the other specific `eventloop-winit-XX` features. ## this feature and select one of the other specific `eventloop-winit-XX` features.
eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"] eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"]
## Simliar to `eventloop-winit-all` this enables the winit based event loop but only ## Simliar to `eventloop-winit` this enables the winit based event loop but only
## with support for the X Window System on Unix. ## with support for the X Window System on Unix.
eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"] eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"]
## Simliar to `eventloop-winit-all` this enables the winit based event loop but only ## Simliar to `eventloop-winit` this enables the winit based event loop but only
## with support for the Wayland window system on Unix. ## with support for the Wayland window system on Unix.
eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"] eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"]