structopt-yaml 0.4.6

An default value loader from YAML for structopt
Documentation
1
2
3
4
5
6
7
8
use std::path::PathBuf;

fn main() {
    let path = PathBuf::from("../README.md");
    if path.exists() {
        skeptic::generate_doc_tests(&[path]);
    }
}