1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-12-02 19:32:24 +01: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"] categories = ["network-programming", "asynchronous"]
license = "Apache-2.0" license = "Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
build = "build.rs"
[badges] [badges]
travis-ci = { repository = "fafhrd91/actix-web", branch = "master" } travis-ci = { repository = "fafhrd91/actix-web", branch = "master" }
@ -22,7 +21,7 @@ name = "actix_web"
path = "src/lib.rs" path = "src/lib.rs"
[features] [features]
default = ["nightly"] default = []
# Enable nightly features # Enable nightly features
nightly = [] nightly = []
@ -55,12 +54,6 @@ git = "https://github.com/fafhrd91/actix.git"
default-features = false default-features = false
features = [] features = []
[dev-dependencies]
skeptic = "0.13"
[build-dependencies]
skeptic = "0.13"
[profile.release] [profile.release]
lto = true lto = true
opt-level = 3 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>>, inner: Rc<RefCell<InnerMultipart>>,
} }
///
#[derive(Debug)] #[derive(Debug)]
pub enum MultipartItem { pub enum MultipartItem {
/// Multipart field /// Multipart field

View File

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