summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 4771dcde5ff97d133738632b6ce2e7d91be34eb4 (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
// Feature `vcs`
#[cfg(feature = "vcs")]
pub mod vcs {
    pub extern crate vcs_data;
    pub use vcs_data::*;

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

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

pub mod utils {
    // 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::*;
    }

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