diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-03-07 12:21:17 +0400 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-03-19 02:20:53 +0100 |
commit | 7e46111c9d889e3f1abe659042922d157189f172 (patch) | |
tree | 88ab1e9620c4485afd200ede7e6aa1e67ad1d74d | |
parent | 772a31e335eb7a7a6dc10da52f2f5b1d9dcaa2bb (diff) | |
download | alacritty-7e46111c9d889e3f1abe659042922d157189f172.tar.gz alacritty-7e46111c9d889e3f1abe659042922d157189f172.zip |
Bump winit to 0.29.14
Fixes #7806.
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -1119,9 +1119,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.10" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ "libc", "log", @@ -2270,9 +2270,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "winit" -version = "0.29.12" +version = "0.29.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b042fd2f023ddd9713f02f8f89c62f5a32c18d104ac182b480a0e3e6cb8d37f7" +checksum = "a7a3db69ffbe53a9babec7804da7a90f21020fcce1f2f5e5291e2311245b993d" dependencies = [ "ahash", "android-activity", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 28b752e3..8ca9cd46 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.29.12", default-features = false, features = ["rwh_05", "serde"] } +winit = { version = "0.29.14", default-features = false, features = ["rwh_05", "serde"] } [build-dependencies] gl_generator = "0.14.0" |