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
#![allow(unused_attributes)]

#[macro_use]
extern crate log;

#[macro_use]
pub use error::{XXError, XXResult};

pub mod context;
pub mod error;
pub mod file;
pub mod git;
pub mod process;
mod regex;

#[cfg(all(
    feature = "archive_untar_gzip",
    feature = "archive_untar_bzip2",
    feature = "archive_untar_xz",
    feature = "archive_unzip",
))]
pub mod archive;

#[cfg(feature = "hash")]
pub mod hash;
#[cfg(feature = "http")]
pub mod http;

#[cfg(test)]
pub mod test;