native_model 0.4.11

A thin wrapper around serialized data which add information of identity and version.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate skeptic;

use skeptic::{generate_doc_tests, markdown_files_of_directory};

fn main() {
    {
        let mut mdbook_files = markdown_files_of_directory("doc/");
        mdbook_files.push("README.md".into());
        generate_doc_tests(&mdbook_files);
    }
}