1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 18:12:57 +01:00

Merge pull request #7 from actix/remove-skeptic

remove skeptic
This commit is contained in:
Nikolay Kim 2018-05-23 16:17:35 -07:00 committed by GitHub
commit d4e2aa8ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 36 deletions

View File

@ -13,7 +13,6 @@ categories = ["network-programming", "asynchronous",
"web-programming::websocket"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
build = "build.rs"
[lib]
src="src/lib.rs"
@ -37,9 +36,7 @@ http = "0.1"
[dev-dependencies]
env_logger = "0.5"
skeptic = "0.13"
serde_derive = "1.0"
[build-dependencies]
skeptic = "0.13"
futures = "0.1"

View File

@ -1,31 +0,0 @@
extern crate skeptic;
use std::{env, fs};
fn main() {
let f = env::var("OUT_DIR").unwrap() + "/skeptic-tests.rs";
let _ = fs::remove_file(f);
// generates doc tests.
skeptic::generate_doc_tests(
&["content/docs/application.md",
"content/docs/autoreload.md",
"content/docs/databases.md",
"content/docs/errors.md",
"content/docs/extractors.md",
"content/docs/getting-started.md",
"content/docs/handlers.md",
"content/docs/http2.md",
"content/docs/installation.md",
"content/docs/middleware.md",
"content/docs/request.md",
"content/docs/response.md",
"content/docs/sentry.md",
"content/docs/server.md",
"content/docs/static-files.md",
"content/docs/testing.md",
"content/docs/url-dispatch.md",
"content/docs/websockets.md",
"content/docs/whatis.md",
]);
}

View File

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