From 9850e931259cd4acd59dc5e879a96db60d949b97 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Tue, 7 Mar 2017 13:42:32 -0800 Subject: [PATCH] Add ncurses-backend and blt-backend features Not very useful for now since those backends don't need any extra crate, but at least it improves coherence since there is termion-backend already. --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6f40559..ea8999c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,9 +57,12 @@ rand = "0.3" skeptic = "0.7" [features] -default = ["ncurses"] +default = ["ncurses-backend"] + +ncurses-backend = ["ncurses"] termion-backend = ["termion", "chan", "chan-signal"] pancurses-backend = ["pancurses"] +blt-backend = ["bear-lib-terminal"] [lib] name = "cursive"