Bump alacritty

Fixes bug with IO crash
This commit is contained in:
A-Walrus 2024-08-21 19:20:05 +03:00 committed by Jeremy Soller
parent 023aedee65
commit 5c39a96e10
2 changed files with 4 additions and 5 deletions

7
Cargo.lock generated
View file

@ -128,9 +128,8 @@ dependencies = [
[[package]]
name = "alacritty_terminal"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d1ea4484c8676f295307a4892d478c70ac8da1dbd8c7c10830a504b7f1022f"
version = "0.24.1-dev"
source = "git+https://github.com/alacritty/alacritty?rev=cacdb5bb3b72bad2c729227537979d95af75978f#cacdb5bb3b72bad2c729227537979d95af75978f"
dependencies = [
"base64 0.22.1",
"bitflags 2.6.0",
@ -147,7 +146,7 @@ dependencies = [
"signal-hook",
"unicode-width",
"vte",
"windows-sys 0.48.0",
"windows-sys 0.52.0",
]
[[package]]

View file

@ -10,7 +10,7 @@ rust-version = "1.71"
vergen = { version = "8", features = ["git", "gitcl"] }
[dependencies]
alacritty_terminal = "0.23"
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "cacdb5bb3b72bad2c729227537979d95af75978f" }
env_logger = "0.10"
hex_color = { version = "3", features = ["serde"] }
indexmap = "2"