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

#[macro_use]
extern crate error_chain;

extern crate colored;

pub mod error;
pub mod executable;

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

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