1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00

drop skeptic for now

This commit is contained in:
Nikolay Kim 2017-10-19 16:41:21 -07:00
parent 24804250a8
commit 1db4200621
4 changed files with 2 additions and 15 deletions

View file

@ -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

View file

@ -1,6 +0,0 @@
extern crate skeptic;
fn main() {
// generates doc tests for `README.md`.
skeptic::generate_doc_tests(&["README.md"]);
}

View file

@ -89,6 +89,7 @@ pub struct Multipart {
inner: Rc<RefCell<InnerMultipart>>,
}
///
#[derive(Debug)]
pub enum MultipartItem {
/// Multipart field

View file

@ -1 +0,0 @@
include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));