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

//! # Dia-I18n
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/dia-i18n>
//! - License: Nice License 1.0.0 _(see LICENSE file at root directory of `master` branch)_
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! ## Features
//!
//! - ISO 3166-1 codes: [`iso_3166_1`][::iso_3166_1].
//! - ISO 639 codes: [`iso_639`][::iso_639].
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html
//! [::iso_3166_1]: iso_3166_1/index.html
//! [::iso_639]: iso_639/index.html

#![warn(missing_docs)]

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

macro_rules! code_name  { () => { "dia-i18n" }}
macro_rules! version    { () => { "0.3.0" }}

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

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

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

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

/// # Unique universally identifier of this crate
pub const UUID: &str = "a4cdafbf-0d4a-4b96-9051-7a265b4d8b91";

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

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

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

pub mod iso_3166_1;
pub mod iso_639;
pub mod version_info;