1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![deny(warnings)]

#[macro_use]
extern crate failure;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;

extern crate regex;
extern crate serde;
extern crate serde_json;
extern crate tempfile;
extern crate walkdir;

pub mod cargo_messages;
pub mod config;
pub mod error;
pub mod steps;

mod formatting;
mod plan;

pub mod prelude {
    pub use config::{Config, Mode};
    pub use error::{Result, TestingError};
    pub use plan::{run_tests, run_tests_with_writer};
}