This crate provides utility macros to work with crate version information.
The two main macros are version_str! and version_tuple!. These macros return the
crate version in string format and as a tuple of three u16 integers, respectively.
Examples
use ;
let version = version_str!;
println!;
let = version_tuple!;
println!;
no_std
This crate is no_std compatible, so it can be used in environments without
the Rust standard library.