diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-12-02 00:45:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 00:45:10 +0300 |
commit | 706682646b78d34bbdad709e1c0f05aa2fc08d4d (patch) | |
tree | 02057a49dc6d6ab25263c27b69fc4ffbf178a599 | |
parent | 2d619850aebedc93c3f7790d1383ef2fdae2b432 (diff) | |
download | alacritty-706682646b78d34bbdad709e1c0f05aa2fc08d4d.tar.gz alacritty-706682646b78d34bbdad709e1c0f05aa2fc08d4d.zip |
Bump glutin to 0.30.2
Fixes #6498.
-rw-r--r-- | Cargo.lock | 14 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
2 files changed, 8 insertions, 8 deletions
@@ -676,9 +676,9 @@ dependencies = [ [[package]] name = "glutin" -version = "0.30.0" +version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34acbf502536f1d125f0fc09b6ad8824e93e6da7b99e86d3383e6b8310ba3554" +checksum = "0282c380a3adb52ae095e5847cc575c6bf79d296dcbf333e00be4a3fca07235e" dependencies = [ "bitflags", "cfg_aliases", @@ -692,16 +692,16 @@ dependencies = [ "objc", "once_cell", "raw-window-handle 0.5.0", - "wayland-sys 0.30.0-beta.12", + "wayland-sys 0.30.0", "windows-sys", "x11-dl", ] [[package]] name = "glutin_egl_sys" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c3c95a2d7a54bab0c74759794efb5cd63470d4504cbe85ed4114dc82c98bdc1" +checksum = "3adbb8fec0e18e340f990c78f79f5f0e142d0d83f46b10909aaa7d251c00afdf" dependencies = [ "gl_generator", "windows-sys", @@ -1943,9 +1943,9 @@ dependencies = [ [[package]] name = "wayland-sys" -version = "0.30.0-beta.12" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1117fe4570fe063122ba2b1b1e39e56fb1a73921d395f9288af06af0dd1c7f55" +checksum = "8bcdbc325d8a78a9f49dcb77b39e92656e93b3f69eb4d60245f2116ec4bb0a97" dependencies = [ "dlib", "lazy_static", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 307b8c8c..810f9d33 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -29,7 +29,7 @@ fnv = "1" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" serde_json = "1" -glutin = { version = "0.30.0", default-features = false, features = ["egl", "wgl"] } +glutin = { version = "0.30.2", default-features = false, features = ["egl", "wgl"] } winit = { version = "0.27.4", default-features = false, features = ["serde"] } notify-debouncer-mini = { version = "0.2.1", default-features = false } parking_lot = "0.12.0" |