The rustc_info
plugin provides several macros for exposing compiler info into the rust code for debugging purposes.
```rust
fn main() { println!("This project was compiled with rustc version: {} ({} {}) for {} target", rustcrelease!(), rustccommithash!(), rustccommitdate!(), rustchost!()); } ```
Licensed under MIT license (LICENSE)