From da5121d265bec1b10cffe3126c18d82a19e52435 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Mon, 25 Sep 2017 15:43:08 -0700 Subject: [PATCH] Update skeptic --- Cargo.toml | 7 +++---- build.rs | 4 ---- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e61163a..0080ed9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,9 +15,8 @@ version = "0.6.5-pre" [badges.travis-ci] repository = "gyscos/Cursive" -[build-dependencies.skeptic] -optional = true -version = "0.10" +[build-dependencies] +skeptic = "0.13" [dependencies] log = "0.3" @@ -56,7 +55,7 @@ version = "1.4.0" [dev-dependencies] rand = "0.3" -skeptic = "0.10" +skeptic = "0.13" [features] default = ["ncurses-backend"] diff --git a/build.rs b/build.rs index ea3c7e2..84a193d 100644 --- a/build.rs +++ b/build.rs @@ -1,4 +1,3 @@ -#[cfg(feature = "skeptic")] fn main() { extern crate skeptic; @@ -7,6 +6,3 @@ fn main() { "doc/tutorial_2.md", "doc/tutorial_3.md" ]); } - -#[cfg(not(feature = "skeptic"))] -fn main() {}