macro_rules! version_str { () => { ... }; }
version_str! is a macro that returns the version string of the crate.
version_str!
use this_crate::version_str; let version = version_str!(); println!("The version is: {}", version);