Build metadata

use this crate to embed repository and build metadata at compile time

This project uses procedural macros to provide you with this metadata, exposing three macros:

Usage

Import it with cargo from crates.io by adding this to you Cargo.toml` file:

toml [dependencies] build_metadata = "^0.1"

```rust

![feature(plugin)]

![plugin(build_metadata)]

fn main() { println!("build time: {}", time!()); println!("head: {}", head!()); println!("commit id: {}", commit!()); } ```