diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-12-21 19:00:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-21 19:00:26 +0300 |
commit | def2d488de558d5a3af18f3c2c78852bb1421764 (patch) | |
tree | 603431b79cd1dce5c558645d2ab9ed29f28accf0 | |
parent | 8591a9421d0a100af16cd50b4610bc55506fb14f (diff) | |
download | alacritty-def2d488de558d5a3af18f3c2c78852bb1421764.tar.gz alacritty-def2d488de558d5a3af18f3c2c78852bb1421764.zip |
Bump winit to 0.30.6
Fixes #8268.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 86637383..f2ca2761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,6 +70,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its - Invalid URL highlights after terminal scrolling - Hollow block cursor not spanning multiple chars being edited inside the IME preview - Vi inline search only working for direct key input without modifiers +- Crash when pressing certain modifier keys on macOS 15+ ## 0.13.2 @@ -2526,9 +2526,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winit" -version = "0.30.5" +version = "0.30.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0be9e76a1f1077e04a411f0b989cbd3c93339e1771cb41e71ac4aee95bfd2c67" +checksum = "7c3d72dfa0f47e429290cd0d236884ca02f22dbd5dd33a43ad2b8bf4d79b6c18" dependencies = [ "ahash", "android-activity", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 264ecbc6..f7280deb 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -41,7 +41,7 @@ tempfile = "3.12.0" toml = "0.8.2" toml_edit = "0.22.21" unicode-width = "0.1" -winit = { version = "0.30.5", default-features = false, features = ["rwh_06", "serde"] } +winit = { version = "0.30.6", default-features = false, features = ["rwh_06", "serde"] } [build-dependencies] gl_generator = "0.14.0" |