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
#![recursion_limit = "128"]
// TODO: Determine why `error-chain` triggers the `unused_doc_comment` warning.
#![allow(unused_doc_comment)]

extern crate clap;
extern crate crossbeam_channel;
extern crate crossbeam_utils;
extern crate irc;
extern crate itertools;
extern crate rand;
extern crate rando;
extern crate regex;
extern crate serde;
extern crate serde_yaml;
extern crate smallvec;
extern crate uuid;
extern crate yaml_rust;

#[macro_use]
extern crate error_chain;

#[macro_use]
extern crate lazy_static;

#[macro_use]
extern crate log;

#[macro_use]
extern crate serde_derive;

pub use self::core::*;

pub mod modules;
pub mod util;

mod core;