From 9dc88dafc5f4257362f5d8769af1b1092cf91b80 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Fri, 13 Oct 2017 16:07:36 -0700 Subject: [PATCH] Remove skeptic --- Cargo.toml | 4 ---- build.rs | 12 ------------ 2 files changed, 16 deletions(-) delete mode 100644 build.rs diff --git a/Cargo.toml b/Cargo.toml index cb10cca..61b42dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [package] authors = ["Alexandre Bury "] -build = "build.rs" categories = ["command-line-interface", "gui"] description = "A TUI (Text User Interface) library focused on ease-of-use." documentation = "https://gyscos.github.io/Cursive/cursive/index.html" @@ -15,8 +14,6 @@ version = "0.6.5-pre" [badges.travis-ci] repository = "gyscos/Cursive" -[build-dependencies] -skeptic = "0.13" [dependencies] log = "0.3" @@ -55,7 +52,6 @@ version = "1.5.0" [dev-dependencies] rand = "0.3" -skeptic = "0.13" [features] default = ["ncurses-backend"] diff --git a/build.rs b/build.rs deleted file mode 100644 index 4fff2cb..0000000 --- a/build.rs +++ /dev/null @@ -1,12 +0,0 @@ -extern crate skeptic; - -fn main() { - extern crate skeptic; - - skeptic::generate_doc_tests(&[ - "Readme.md", - "doc/tutorial_1.md", - "doc/tutorial_2.md", - "doc/tutorial_3.md", - ]); -}