irc_bot/
lib.rs

1#![recursion_limit = "128"]
2// TODO: Determine why `error-chain` triggers the `unused_doc_comment` warning.
3#![allow(unused_doc_comment)]
4
5extern crate clap;
6extern crate crossbeam_channel;
7extern crate crossbeam_utils;
8extern crate irc;
9extern crate itertools;
10extern crate rand;
11extern crate rando;
12extern crate regex;
13extern crate serde;
14extern crate serde_yaml;
15extern crate smallvec;
16extern crate uuid;
17extern crate yaml_rust;
18
19#[macro_use]
20extern crate error_chain;
21
22#[macro_use]
23extern crate lazy_static;
24
25#[macro_use]
26extern crate log;
27
28#[macro_use]
29extern crate serde_derive;
30
31pub use self::core::*;
32
33pub mod modules;
34pub mod util;
35
36mod core;