rustc-info-rs

The rustc_info plugin provides several macros for exposing compiler info into the rust code for debugging purposes.

Examples

```rust

![feature(plugin)]

![plugin(rustc_info)]

fn main() { println!("This project was compiled with rustc version: {} ({} {}) for {} target", rustcrelease!(), rustccommithash!(), rustccommitdate!(), rustchost!()); } ```

License

Licensed under MIT license (LICENSE)