aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 6d0b42d84bf0972d963e54b64fe0af7eafbd2f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(globs, phase, slicing_syntax, macro_rules, unboxed_closures)]

#[phase(plugin)]
extern crate regex_macros;
extern crate regex;

#[phase(plugin, link)]
extern crate log;

pub mod server;
pub mod color;
pub mod ident;
pub mod callback;
pub mod event;