From bdfa52fcd84995dfa955e2d726a9c22f1f9d4bc9 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Sat, 10 Jul 2021 16:21:19 +0100 Subject: [PATCH] Update mio-anonymous-pipes to 0.2.0 Fixes #5266. --- CHANGELOG.md | 1 + Cargo.lock | 5 +++-- alacritty_terminal/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd81bd57..797c0658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Slow PTY read performance with extremely dense grids - Crash when resizing during vi mode - Unintentional text selection range change after leaving vi mode +- Deadlock on Windows during high frequency output ## 0.8.0 diff --git a/Cargo.lock b/Cargo.lock index 0cf3214d..f4b5963a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -966,12 +966,13 @@ dependencies = [ [[package]] name = "mio-anonymous-pipes" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8c274c3c52dcd1d78c5d7ed841eca1e9ea2db8353f3b8ec25789cc62c471aaf" +checksum = "6bc513025fe5005a3aa561b50fdb2cda5a150b84800ae02acd8aa9ed62ca1a6b" dependencies = [ "mio", "miow 0.3.7", + "parking_lot", "spsc-buffer", "winapi 0.3.9", ] diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 89bc26a5..72afabaa 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -37,7 +37,7 @@ winapi = { version = "0.3.7", features = [ "impl-default", "basetsd", "libloaderapi", "minwindef", "ntdef", "processthreadsapi", "winbase", "wincon", "wincontypes", "winerror", "winnt", "winuser", ]} -mio-anonymous-pipes = "0.1" +mio-anonymous-pipes = "0.2" [dev-dependencies] serde_json = "1.0.0"