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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// License: see LICENSE file at root directory of `master` branch

//! # Dia Kit
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/dia-kit>
//! - License: Nice License 1.0.0 _(see LICENSE file at root directory of `master` branch)_
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! ---
//!
//! ## What is this?
//!
//! This project contains some kits. They are not worth as independent crates, but important enough to have their own version and release date.
//!
//! All kits follow Semantic Versioning 2.0.0.
//!
//! ## Usage
//!
//! The project is intended to be used as a program. So default features just contain some identifiers and documentation.
//!
//! - Installing the program via Cargo:
//!
//!     ```shell
//!     ~> cargo install dia-kit --version=x.y.z --features=bin
//!     ```
//!
//! - Or building from source:
//!
//!     ```shell
//!     ~> # Clone a specific version via tag name
//!     ~> git clone --branch=x.y.z --depth=1 -- https://bitbucket.org/haibison/dia-kit dia-kit-x.y.z/
//!     ~> cd dia-kit-x.y.z/
//!     ~> cargo build --release --features=bin
//!     ```
//!
//! Then you can run `help` command to get help message:
//!
//! ```shell
//! ~> dia-kit help
//! ```
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html

// ╔═════════════════╗
// ║   IDENTIFIERS   ║
// ╚═════════════════╝

macro_rules! code_name  { () => { "dia-kit" }}
macro_rules! version    { () => { "0.29.0" }}

/// # Crate name
pub const NAME: &str = "Dia Kit";

/// # Crate code name
pub const CODE_NAME: &str = code_name!();

/// # ID of this crate
pub const ID: &str = concat!(
    "90bed393-d6729351-cd0fa774-d68a0053-6f9c8e33-0310e8d4-468ed316-9151e229-",
    "48208d36-c6b5881f-80b2c149-18c96133-bc3539d5-917385b0-a90ef29c-45e51e75",
);

/// # Crate version
pub const VERSION: &str = version!();

/// # Crate release date (year/month/day)
pub const RELEASE_DATE: (u16, u8, u8) = (2019, 7, 10);

/// # Tag, which can be used for logging...
pub const TAG: &str = concat!(code_name!(), "::90bed393::", version!());

// ╔════════════════════╗
// ║   IMPLEMENTATION   ║
// ╚════════════════════╝

pub mod version_info;

#[test]
fn test_crate_version() {
    assert_eq!(VERSION, env!("CARGO_PKG_VERSION"));
}