1
0
mirror of https://github.com/actix/actix synced 2024-11-23 14:41:07 +01:00

remove skeptic from release

This commit is contained in:
Nikolay Kim 2017-10-17 13:40:21 -07:00
parent 23822dbf3a
commit 2bb4e09a43
3 changed files with 0 additions and 20 deletions

View File

@ -10,7 +10,6 @@ repository = "https://github.com/fafhrd91/actix.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", branch = "master" }
@ -46,12 +45,6 @@ uuid = { version = "0.5", features = ["v4"] }
version = "0.1"
optional = true
[dev-dependencies]
skeptic = "0.13"
[build-dependencies]
skeptic = "0.13"
[profile.release]
lto = true
opt-level = 3

View File

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

View File

@ -1,2 +0,0 @@
#[cfg(unix)]
include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));