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

//! # Plurals
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/plurals>
//! - License: Nice License 1.0.0 _(see LICENSE file at root directory of `master` branch)_
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! ## Features
//!
//! This crate helps with singular/plural forms, mostly in English.
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html

#![warn(missing_docs)]
#![no_std]

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

macro_rules! code_name  { () => { "plurals" }}
macro_rules! version    { () => { "0.4.0" }}

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

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

/// # ID of this crate
pub const ID: &str = concat!(
    "5453e389-8cb2289c-3c65f4bf-ac212e3f-ff5cc41a-19a4f3de-8bdadffb-aa805301-",
    "768016c8-0f2aba07-d08fe96a-1b3d9b84-d5ed49de-5d407e0a-9c2401b7-840c7490",
);

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

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

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

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

pub mod version_info;

mod root;

pub use root::*;

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