1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Simple text file parsing library powered by [regex](https://en.wikipedia.org/wiki/Regular_expression) and [glob patterns](https://en.wikipedia.org/wiki/Glob_(programming)).

#![warn(missing_docs, clippy::unwrap_used)]

/// Export regex crate.
pub use regex;

/// Export globwalk crate.
pub use globwalk;

/// Document parser.
pub mod parser;

/// Parser results.
pub mod document;

/// Error implementation.
pub mod error;

/// File reader.
pub mod reader;