Bump winit to 0.28.1

This fixes crash on Wayland with multiple windows.
This commit is contained in:
Kirill Chibisov 2023-02-02 15:09:47 +03:00 committed by GitHub
parent 799d8f75bb
commit 8a838710e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -2160,9 +2160,9 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
[[package]]
name = "winit"
version = "0.28.0"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "089b2f049a47946f11ea91838a832b303f65d6875d491df2952859eb18287ce8"
checksum = "0c4755d4ba0e3d30fc7beef2095e246b1e6a6fad0717608bcb87a2df4b003bcf"
dependencies = [
"android-activity",
"bitflags",

View File

@ -30,7 +30,7 @@ serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1"
glutin = { version = "0.30.3", default-features = false, features = ["egl", "wgl"] }
winit = { version = "0.28.0", default-features = false, features = ["serde"] }
winit = { version = "0.28.1", default-features = false, features = ["serde"] }
notify = "5.1.0"
parking_lot = "0.12.0"
crossfont = { version = "0.5.0", features = ["force_system_fontconfig"] }

View File

@ -14,4 +14,4 @@ serde_yaml = "0.8.24"
serde = "1.0.137"
[target.'cfg(target_os = "macos")'.dependencies]
winit = { version = "0.28.0", default-features = false, features = ["serde"] }
winit = { version = "0.28.1", default-features = false, features = ["serde"] }