summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a93251b..ae7dc6f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,7 @@
-#[test]
-fn it_works() {
-}
+#![feature(phase, globs)]
+
+#[phase(plugin)] extern crate regex_macros;
+extern crate regex;
+
+mod constants;
+mod types;