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", - ]); -}