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

//! # Dia-Files
//!
//! ## Project
//!
//! - Repository: <https://bitbucket.org/haibison/dia-files>
//! - License: Nice License 1.0.0 _(see LICENSE file at root directory of `master` branch)_
//! - _This project follows [Semantic Versioning 2.0.0]_
//!
//! ## Features
//!
//! - Finding files recursively: [`find_files()`][::find_files()].
//! - And some functions for reading bytes from [`Read`][r://Read], [`Path`][r://Path]...
//!
//! ## Notes
//!
//! - Tests require some symbolic link files in `tests/` directory. At the time of writing this note, Cargo does not allow publishing crates
//!   containing symbolic link files. So for source publishing on <https://crates.io/crates/dia-files>, they are stripped. However, the
//!   repository has all those files.
//!
//! [Semantic Versioning 2.0.0]: https://semver.org/spec/v2.0.0.html
//!
//! [::find_files()]: fn.find_files.html
//! [r://Read]: https://doc.rust-lang.org/std/io/trait.Read.html
//! [r://Path]: https://doc.rust-lang.org/std/path/struct.Path.html

#![warn(missing_docs)]

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

macro_rules! code_name  { () => { "dia-files" }}
macro_rules! version    { () => { "0.11.0" }}

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

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

/// # ID of this crate
pub const ID: &str = "90601388-3dc8df3c-e643186e-d7713342-0a347b5c-af1d633d";

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

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

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

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

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

pub mod filter;
pub mod version_info;

mod read;
mod root;

pub use read::*;
pub use root::*;