diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-06-23 17:56:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-23 17:56:19 +0300 |
commit | da554e41f3a91ed6cc5db66b23bf65c58529db83 (patch) | |
tree | 29f2869d6552510b47977eaec24a86d23620ed7e | |
parent | 0d4ab7bca43213d96ddfe40048fc0f922543c6f8 (diff) | |
download | alacritty-da554e41f3a91ed6cc5db66b23bf65c58529db83.tar.gz alacritty-da554e41f3a91ed6cc5db66b23bf65c58529db83.zip |
Bump winit to 0.30.3
Fixes #8046.
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -2499,9 +2499,9 @@ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "winit" -version = "0.30.2" +version = "0.30.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dc930d6cfbf53c4fe0b95689cdc2e17b8658c3f4214b9953298ccb5a1a15c90" +checksum = "49f45a7b7e2de6af35448d7718dab6d95acec466eb3bb7a56f4d31d1af754004" dependencies = [ "ahash", "android-activity", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 1abf4912..a2fd0433 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -39,7 +39,7 @@ serde_json = "1" serde_yaml = "0.9.25" toml = "0.8.2" unicode-width = "0.1" -winit = { version = "0.30.2", default-features = false, features = ["rwh_06", "serde"] } +winit = { version = "0.30.3", default-features = false, features = ["rwh_06", "serde"] } [build-dependencies] gl_generator = "0.14.0" |