1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-25 14:05:41 -05:00

Bump glutin to 0.31.1

This fixes a crash on startup with macOS Sonoma.
This commit is contained in:
Kirill Chibisov 2023-10-30 03:15:07 +04:00 committed by GitHub
parent 4b6ff13113
commit 609499640f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -881,9 +881,9 @@ dependencies = [
[[package]] [[package]]
name = "glutin" name = "glutin"
version = "0.31.0" version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04c03bcbdb3c865ac10196deaddbcea719e601d2d3eef7541872b8dee3492a36" checksum = "eca18d477e18c996c1fd1a50e04c6a745b67e2d512c7fb51f2757d9486a0e3ee"
dependencies = [ dependencies = [
"bitflags 2.4.0", "bitflags 2.4.0",
"cfg_aliases", "cfg_aliases",

View file

@ -28,7 +28,7 @@ bitflags = "2.2.1"
clap = { version = "4.2.7", features = ["derive", "env"] } clap = { version = "4.2.7", features = ["derive", "env"] }
copypasta = { version = "0.10.0", default-features = false } copypasta = { version = "0.10.0", default-features = false }
crossfont = { version = "0.5.0", features = ["force_system_fontconfig"] } 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" home = "0.5.5"
libc = "0.2" libc = "0.2"
log = { version = "0.4", features = ["std", "serde"] } log = { version = "0.4", features = ["std", "serde"] }