blob: 1c60750ea7d206161f3347e3aea349fcb3382a9f (
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 message;
|