hull 0.1.2

Build tool to aid Rust development.
1
2
3
4
5
6
7
8
9
10
11
mod build;
mod each;
mod entry;

pub use self::build::Build;
pub use self::each::Each;
pub use self::entry::Entry;

pub trait Command {
    fn run(&mut self) -> Result<(), ()>;
}