summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: abf713cb422c135ed27cfac353d57dcb961ccaa3 (plain)
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
/// Data
pub mod data;

// Feature `lib`
#[cfg(feature = "lib")]
pub mod lib {
    pub extern crate vcs_data;
    pub use vcs_data::*;

    pub extern crate vcs_actions;
    pub use vcs_actions::*;

    pub extern crate vcs_docs;
    pub use vcs_docs::*;
}

pub mod system {
    pub mod constants {
        pub use constants::*;
    }

    pub mod action_system {
        pub use action_system::*;
    }

    pub mod asset_system {
        pub use asset_system::*;
    }
}

pub mod utils {
    // Feature `cfg_file`
    #[cfg(feature = "cfg_file")]
    pub mod cfg_file {
        extern crate cfg_file;
        pub use cfg_file::*;
    }

    // Feature `data_struct`
    #[cfg(feature = "data_struct")]
    pub mod data_struct {
        extern crate data_struct;
        pub use data_struct::*;
    }

    // Feature `sha1_hash`
    #[cfg(feature = "sha1_hash")]
    pub mod sha1_hash {
        extern crate sha1_hash;
        pub use sha1_hash::*;
    }

    // Feature `tcp_connection`
    #[cfg(feature = "tcp_connection")]
    pub mod tcp_connection {
        extern crate tcp_connection;
        pub use tcp_connection::*;
    }

    // Feature `string_proc`
    #[cfg(feature = "string_proc")]
    pub mod string_proc {
        extern crate string_proc;
        pub use string_proc::*;
    }
}