From 3957a2555dbd81271d3e29a2f0b8f07258037e7b Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Fri, 6 Nov 2020 17:33:02 +0000 Subject: Deprecate the WinPTY backend --- alacritty_terminal/Cargo.toml | 2 +- alacritty_terminal/src/config/mod.rs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'alacritty_terminal') diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index 83c5b416..89da83bd 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -41,7 +41,7 @@ mio-anonymous-pipes = "0.1" winpty = { version = "0.2.0", optional = true } [features] -default = ["winpty"] +default = [] bench = [] [dev-dependencies] diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs index add38c59..98849d90 100644 --- a/alacritty_terminal/src/config/mod.rs +++ b/alacritty_terminal/src/config/mod.rs @@ -55,11 +55,6 @@ pub struct Config { #[serde(default, deserialize_with = "failure_default")] pub cursor: Cursor, - /// Use WinPTY backend even if ConPTY is available. - #[cfg(windows)] - #[serde(default, deserialize_with = "failure_default")] - pub winpty_backend: bool, - /// Shell startup directory. #[serde(default, deserialize_with = "option_explicit_none")] pub working_directory: Option, @@ -72,6 +67,11 @@ pub struct Config { #[serde(skip)] pub hold: bool, + // TODO: DEPRECATED + #[cfg(windows)] + #[serde(default, deserialize_with = "failure_default")] + pub winpty_backend: bool, + // TODO: DEPRECATED #[serde(default, deserialize_with = "failure_default")] pub visual_bell: Option, -- cgit v1.2.3-54-g00ecf