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

//! # BELE
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/bele>
//! - 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 is a program, it accepts numeric string(s), parses them and prints out their forms in [big-endian and little-endian][wiki:endianness]
//! orders (for integers), as:
//!
//! - Hexadecimal & hexadecimal array.
//! - Binary & binary array.
//!
//! For floats, their form in bits is printed out.
//!
//! All integer/float Rust types are supported. Unsigned and/or smaller ones are tried first.
//!
//! ## Building from source or installing via Cargo
//!
//! This crate is intended to be used as a program. So default features just contain some documentation, constants and no dependencies.
//!
//! `bin` feature contains a binary which uses some dependencies.
//!
//! ### Building from source:
//!
//! ```shell
//! ~> # Clone a specific version via tag name
//! ~> git clone --branch=x.y.z --depth=1 -- https://bitbucket.org/haibison/bele bele-x.y.z/
//! ~> cd bele-x.y.z/
//! ~> cargo build --release --features=bin
//! ```
//!
//! ### Installing via Cargo:
//!
//! ```shell
//! ~> cargo install bele --version=x.y.z --features=bin
//! ```
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html
//! [wiki:endianness]: https://en.wikipedia.org/wiki/Endianness

pub mod version_info;

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

macro_rules! code_name  { () => { "bele" }}
macro_rules! version    { () => { "0.5.0" }}

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

/// # 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, 4, 11);

/// # Unique universally identifier of this crate. Its CRC-32 is `817f990f`.
pub const UUID: &'static str = "212aa102-3002-48f3-943d-1c96a65215b5";

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

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

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