1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use std::env;

//https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates

#[macro_export]
macro_rules! crate_version {
    () => {
        env!("CARGO_PKG_VERSION");
    };
}

#[macro_export]
macro_rules! crate_authors {
    () => {
        env!("CARGO_PKG_AUTHORS");
    };
}

#[macro_export]
macro_rules! crate_name {
    () => {
        env!("CARGO_PKG_NAME");
    };
}

#[macro_export]
macro_rules! crate_description {
    () => {
        env!("CARGO_PKG_DESCRIPTION");
    };
}

#[macro_export]
macro_rules! crate_homepage {
    () => {
        env!("CARGO_PKG_HOMEPAGE");
    };
}

#[macro_export]
macro_rules! crate_repository {
    () => {
        env!("CARGGO_PKG_RESPOSITORY");
    };
}