init 0.2.0

Mark a function to run before main.
init-0.2.0 doesn't have any documentation.
Mark a function to run before main. `src/main.rs` ```rust extern crate init; use init::init; #[init] fn init() { } fn main() { } ``` `build.rs` ```rust extern crate init; fn main() { init::build(); } ```