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
46
47
48
49
50
51
52
53
54
55
56
57
//! Extra version related macros for finer detail.
/// Expands to the crate major version.
///
/// # Examples
///
/// ```
/// const VERSION_MAJOR: &str = pkg::version_major!();
/// ```
/// Expands to the crate minor version.
///
/// # Examples
///
/// ```
/// const VERSION_MINOR: &str = pkg::version_minor!();
/// ```
/// Expands to the crate patch version.
///
/// # Examples
///
/// ```
/// const VERSION_PATCH: &str = pkg::version_patch!();
/// ```
/// Expands to the crate pre-release version.
///
/// # Examples
///
/// ```
/// const VERSION_PRE: &str = pkg::version_pre!();
/// ```