Bump alacritty to fix some panics (#7313)

Release Notes:

- Fixed some panics in the Terminal
([#6835](https://github.com/zed-industries/zed/issues/6835)).
This commit is contained in:
Conrad Irwin
2024-02-02 20:39:51 -07:00
committed by GitHub
parent fcbc220408
commit 583273b6ee
3 changed files with 5 additions and 5 deletions
Generated
+2 -3
View File
@@ -103,9 +103,8 @@ dependencies = [
[[package]]
name = "alacritty_terminal"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35229555d7cc7e83392dfc27c96bec560b1076d756184893296cd60125f4a264"
version = "0.20.1-dev"
source = "git+https://github.com/alacritty/alacritty?rev=2d2b894c3b869fadc78fce9d72cb5c8d2b764cac#2d2b894c3b869fadc78fce9d72cb5c8d2b764cac"
dependencies = [
"base64 0.21.4",
"bitflags 2.4.1",
+2 -1
View File
@@ -11,7 +11,8 @@ doctest = false
[dependencies]
alacritty_terminal = "0.21"
# needed for "a few weeks" until alacritty 0.13.2 is out
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "2d2b894c3b869fadc78fce9d72cb5c8d2b764cac" }
anyhow.workspace = true
db = { path = "../db" }
dirs = "4.0.0"
+1 -1
View File
@@ -364,7 +364,7 @@ impl TerminalBuilder {
pty,
pty_options.hold,
false,
);
)?;
//Kick things off
let pty_tx = event_loop.channel();