From 609499640f4c45ac6ff1f7c7e1b100dea3e88858 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Mon, 30 Oct 2023 03:15:07 +0400 Subject: [PATCH] Bump glutin to 0.31.1 This fixes a crash on startup with macOS Sonoma. --- Cargo.lock | 4 ++-- alacritty/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3d81d88..0dbe6759 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -881,9 +881,9 @@ dependencies = [ [[package]] name = "glutin" -version = "0.31.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04c03bcbdb3c865ac10196deaddbcea719e601d2d3eef7541872b8dee3492a36" +checksum = "eca18d477e18c996c1fd1a50e04c6a745b67e2d512c7fb51f2757d9486a0e3ee" dependencies = [ "bitflags 2.4.0", "cfg_aliases", diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index 890b5226..88dbb1c8 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -28,7 +28,7 @@ bitflags = "2.2.1" clap = { version = "4.2.7", features = ["derive", "env"] } copypasta = { version = "0.10.0", default-features = false } crossfont = { version = "0.5.0", features = ["force_system_fontconfig"] } -glutin = { version = "0.31.0", default-features = false, features = ["egl", "wgl"] } +glutin = { version = "0.31.1", default-features = false, features = ["egl", "wgl"] } home = "0.5.5" libc = "0.2" log = { version = "0.4", features = ["std", "serde"] }