mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 10:40:54 +00:00
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:
parent
fcbc220408
commit
583273b6ee
3 changed files with 5 additions and 5 deletions
5
Cargo.lock
generated
5
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -364,7 +364,7 @@ impl TerminalBuilder {
|
|||
pty,
|
||||
pty_options.hold,
|
||||
false,
|
||||
);
|
||||
)?;
|
||||
|
||||
//Kick things off
|
||||
let pty_tx = event_loop.channel();
|
||||
|
|
Loading…
Reference in a new issue