diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,10 +1,11 @@ -#![feature(globs, phase, slicing_syntax, macro_rules)] +#![feature(globs, phase, slicing_syntax, macro_rules, unboxed_closures)] #[phase(plugin)] extern crate regex_macros; extern crate regex; pub mod server; -pub mod events; pub mod color; pub mod ident; +pub mod callback; +pub mod event; |