From 1db42006211fd05e57013007d9b3e74fc875c51a Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 19 Oct 2017 16:41:21 -0700 Subject: [PATCH] drop skeptic for now --- Cargo.toml | 9 +-------- build.rs | 6 ------ src/multipart.rs | 1 + tests/skeptic.rs | 1 - 4 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 build.rs delete mode 100644 tests/skeptic.rs diff --git a/Cargo.toml b/Cargo.toml index bd5c80ad..639c6196 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,6 @@ repository = "https://github.com/fafhrd91/actix-web.git" categories = ["network-programming", "asynchronous"] license = "Apache-2.0" exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] -build = "build.rs" [badges] travis-ci = { repository = "fafhrd91/actix-web", branch = "master" } @@ -22,7 +21,7 @@ name = "actix_web" path = "src/lib.rs" [features] -default = ["nightly"] +default = [] # Enable nightly features nightly = [] @@ -55,12 +54,6 @@ git = "https://github.com/fafhrd91/actix.git" default-features = false features = [] -[dev-dependencies] -skeptic = "0.13" - -[build-dependencies] -skeptic = "0.13" - [profile.release] lto = true opt-level = 3 diff --git a/build.rs b/build.rs deleted file mode 100644 index ec057100..00000000 --- a/build.rs +++ /dev/null @@ -1,6 +0,0 @@ -extern crate skeptic; - -fn main() { - // generates doc tests for `README.md`. - skeptic::generate_doc_tests(&["README.md"]); -} diff --git a/src/multipart.rs b/src/multipart.rs index 97084127..949fab04 100644 --- a/src/multipart.rs +++ b/src/multipart.rs @@ -89,6 +89,7 @@ pub struct Multipart { inner: Rc>, } +/// #[derive(Debug)] pub enum MultipartItem { /// Multipart field diff --git a/tests/skeptic.rs b/tests/skeptic.rs deleted file mode 100644 index ff46c9c0..00000000 --- a/tests/skeptic.rs +++ /dev/null @@ -1 +0,0 @@ -include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));