From 076e8d47e97f6354012039c8f1730828f610d90f Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Mon, 26 Sep 2016 13:24:28 -0700 Subject: [PATCH] Add "wide" feature to ncurses Since it's no longer the default --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f2c8e0c..7d71c84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,12 +11,15 @@ repository = "https://github.com/gyscos/Cursive" version = "0.2.6" [dependencies] -ncurses = "5.80.0" odds = "0.2" toml = "0.2" unicode-segmentation = "0.1" unicode-width = "0.1" +[dependencies.ncurses] +features = ["wide"] +version = "5.82.0" + [dev-dependencies] rand = "0.3"