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
// License: see LICENSE file at root directory of `master` branch

//! # A small kit for confirming user actions via command line
//!
//! # Project
//!
//! - Repository: <https://bitbucket.org/haibison/dia-assert>
//! - License: Nice License 1.0.0 _(see LICENSE file at root directory of `master` branch)_
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! # Features
//!
//! For important tasks, if you want to confirm the user, you can use [`Level::hash()`][::Level::hash()] to generate a random string, and ask
//! them to type it.
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html
//! [::Level::hash()]: enum.Level.html#method.hash

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

macro_rules! code_name  { () => { "dia-assert" }}
macro_rules! version    { () => { "3.0.0" }}

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

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

/// # ID of this crate
pub const ID: &str = concat!(
    "936e98de-cd536b58-30cb1a29-e1533490-e84942ea-11c26f52-8707801c-eac1da83-",
    "a3e4f3f3-1ab04e2e-9c45eb97-3499bc14-33a7d383-bf296e84-e47dbae4-025c3d88",
);

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

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

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

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

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

#[macro_use]
#[allow(unused_macros)]
mod __;
mod level;

pub mod version_info;

pub use level::*;