From fab5b278c6f00ca21a7c888139c12d929cf8f37c Mon Sep 17 00:00:00 2001 From: Paul Sajna Date: Sun, 24 Mar 2019 20:32:07 -0700 Subject: [PATCH] allow use of cursive/termion-backend --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ab4c69..644b84f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,10 +39,10 @@ default-features = false [dependencies.cursive] version = "0.11.1" default-features = false -features = ["pancurses-backend"] [features] rodio_backend = ["librespot/rodio-backend"] portaudio_backend = ["librespot/portaudio-backend"] +termion_backend = ["cursive/termion-backend"] mpris = ["dbus"] -default = ["rodio_backend", "mpris"] +default = ["rodio_backend", "mpris", "cursive/pancurses-backend"]