aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a93251b..fcb0096 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,10 @@
-#[test]
-fn it_works() {
-}
+#![feature(globs, phase, slicing_syntax, macro_rules)]
+
+#[phase(plugin)]
+extern crate regex_macros;
+extern crate regex;
+
+pub mod server;
+pub mod events;
+pub mod color;
+pub mod ident;