cursive 0.3.7

A TUI (Text User Interface) library focused on ease-of-use.
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "skeptic")]
fn main() {
    extern crate skeptic;

    skeptic::generate_doc_tests(&["Readme.md",
                                  "doc/tutorial_1.md",
                                  "doc/tutorial_2.md",
                                  "doc/tutorial_3.md" ]);
}

#[cfg(not(feature = "skeptic"))]
fn main() {}