version_str

Macro version_str 

Source
macro_rules! version_str {
    () => { ... };
}
Expand description

version_str! is a macro that returns the version string of the crate.

ยงExamples

use this_crate::version_str;
let version = version_str!();
println!("The version is: {}", version);