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

#[macro_use]
extern crate error_chain;

extern crate colored;
extern crate regex;
extern crate semver;
extern crate toml;

pub mod error;
pub mod executable;

pub mod builder;
pub mod project;
pub mod proxy;
pub mod reporter;
pub mod target;

pub mod prelude {
    pub use builder::{BuildStatus, Builder};
    pub use error::Result;
    pub use reporter::BuildReporter;
}