dipstick/build.rs

9 lines
199 B
Rust
Raw Permalink Normal View History

2019-03-18 01:42:00 +00:00
#[cfg(feature = "skeptic")]
2018-05-10 17:06:36 +00:00
extern crate skeptic;
2018-01-08 05:32:32 +00:00
fn main() {
2018-12-18 19:17:12 +00:00
// generates documentation tests.
2019-03-18 01:42:00 +00:00
#[cfg(feature = "skeptic")]
skeptic::generate_doc_tests(&["README.md", "HANDBOOK.md"]);
2018-03-13 13:54:12 +00:00
}