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
/// The version of the crate, as specified in the Cargo.toml file.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(umya_spreadsheet::VERSION, "3.0.0");
/// ```
pub const VERSION: &str = env!;
/// The major version of the crate, as specified in the Cargo.toml file.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(umya_spreadsheet::VERSION_MAJOR, "3");
/// ```
pub const VERSION_MAJOR: &str = env!;
/// The minor version of the crate, as specified in the Cargo.toml file.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(umya_spreadsheet::VERSION_MINOR, "0");
/// ```
pub const VERSION_MINOR: &str = env!;
/// The patch version of the crate, as specified in the Cargo.toml file.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(umya_spreadsheet::VERSION_PATCH, "0");
/// ```
pub const VERSION_PATCH: &str = env!;
/// The pre-release flag of the crate, if any, as specified in the Cargo.toml
/// file.
///
/// # Examples
///
/// ```ignore
/// assert_eq!(umya_spreadsheet::VERSION_PRE, "alpha1");
/// ```
pub const VERSION_PRE: &str = env!;