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
extern crate hyper;
extern crate hyper_native_tls;
extern crate regex;
extern crate serde;
extern crate serde_json;
extern crate shellexpand;
extern crate shlex;
extern crate clap;
extern crate url;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate lazy_static;

pub mod app;
pub mod config;
pub mod language;
pub mod util;
pub mod wandbox;

error_chain! {
  foreign_links {
    Io(::std::io::Error);
    Hyper(::hyper::error::Error);
    HyperNativeTls(::hyper_native_tls::native_tls::Error);
    Regex(::regex::Error);
    SerdeJson(::serde_json::Error);
    UrlParse(::url::ParseError);
    ShellExpand(::shellexpand::LookupError<::std::env::VarError>);
  }
}