From a59332af810340a2c2182875a23dfae290fec19d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 3 Sep 2014 16:10:01 -0400 Subject: start working on message parsing --- src/lib.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3-54-g00ecf