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

//! # Extensions for hashing crates
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/zeros>
//! - License: [Free Public License 1.0.0](https://opensource.org/licenses/FPL-1.0.0)
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! ## Features
//!
//! This project adds some extensions which can be used with hashing crates, such as [`tiny-keccak`][crate:tiny-keccak].
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html
//! [crate:tiny-keccak]: https://crates.io/crates/tiny-keccak

#![warn(missing_docs)]

pub mod version_info;

mod root;

pub use root::*;

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

macro_rules! code_name  { () => { "zeros" }}
macro_rules! version    { () => { "0.1.0" }}

/// # Crate name
pub const NAME: &'static str = "Zeros";

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

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

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

/// # Unique universally identifier of this crate
pub const UUID: &'static str = "25e7939b-43e5-4566-95bf-281ff2845288";

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

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

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