diff options
author | John Nunley <jtnunley01@gmail.com> | 2023-10-07 12:56:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 19:56:11 +0000 |
commit | c2f8abecfbaf6b6388e7746b733b7f22cbb7a750 (patch) | |
tree | 3b8e3cb638d25346f7147001ee57cffa46d52f80 /alacritty_terminal/Cargo.toml | |
parent | ace987f343649ae98e5fb63cf825414855ccd86e (diff) | |
download | alacritty-c2f8abecfbaf6b6388e7746b733b7f22cbb7a750.tar.gz alacritty-c2f8abecfbaf6b6388e7746b733b7f22cbb7a750.zip |
Port from mio to polling
This patch replaces the mio crate with the polling. Now that
smol-rs/polling#96 has been merged, we should be at full feature parity
with mio v0.6 now.
Fixes #7104.
Fixes #6486.
Diffstat (limited to 'alacritty_terminal/Cargo.toml')
-rw-r--r-- | alacritty_terminal/Cargo.toml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index dc164413..7498afab 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -23,9 +23,8 @@ bitflags = { version = "2.2.1", features = ["serde"] } home = "0.5.5" libc = "0.2" log = "0.4" -mio = "0.6.20" -mio-extras = "2" parking_lot = "0.12.0" +polling = "3.0.0" regex-automata = "0.3.6" serde = { version = "1", features = ["derive", "rc"] } serde_yaml = "0.8" @@ -36,12 +35,11 @@ vte = { version = "0.12.0", default-features = false, features = ["ansi", "serde [target.'cfg(unix)'.dependencies] nix = { version = "0.26.2", default-features = false, features = ["term"] } signal-hook = "0.3.10" -signal-hook-mio = { version = "0.2.1", features = ["support-v0_6"] } [target.'cfg(windows)'.dependencies] -mio-anonymous-pipes = "0.2" -miow = "0.3" -windows-sys = { version = "0.48", features = [ +piper = "0.2.1" +miow = "0.3.0" +windows-sys = { version = "0.48.0", features = [ "Win32_System_Console", "Win32_Foundation", "Win32_Security", |