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
72
73
74
75
76
77
78
79
80
81
82
83
#![warn(unused_extern_crates)]
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

extern crate hlua_badtouch as hlua;
extern crate pbr;
extern crate threadpool;
extern crate colored;
extern crate time;
extern crate atty;
extern crate rand;
extern crate getch;
extern crate serde_json;
extern crate kuchiki;
extern crate toml;
extern crate nix;
extern crate libc;
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate structopt;

extern crate md5;
extern crate sha1;
extern crate sha2;
extern crate sha3;
extern crate digest;
extern crate hmac;
extern crate base64;
extern crate bcrypt;

#[cfg(not(windows))]
extern crate termios;

extern crate reqwest;
extern crate mysql;
extern crate ldap3;
extern crate twox_hash;

pub mod args;
pub mod config;
pub mod ctx;
pub mod db;
pub mod fsck;
pub mod html;
pub mod http;
pub mod json;
pub mod keyboard;
pub mod pb;
pub mod runtime;
pub mod scheduler;
pub mod structs;
pub mod ulimit;
pub mod utils;


pub mod errors {
    use std;
    use hlua;
    use serde_json;
    use reqwest;
    use base64;
    use toml;
    use nix;
    use bcrypt;
    use mysql;

    error_chain! {
        foreign_links {
            Io(std::io::Error);
            Lua(hlua::LuaError);
            Json(serde_json::Error);
            Reqwest(reqwest::Error);
            Utf8(std::str::Utf8Error);
            BufWrite(std::io::IntoInnerError<std::io::BufWriter<std::io::Stdout>>);
            Base64Decode(base64::DecodeError);
            Toml(toml::de::Error);
            Nix(nix::Error);
            Bcrypt(bcrypt::BcryptError);
            Mysql(mysql::Error);
        }
    }
}