diff options
author | Till Hoeppner | 2014-10-21 15:33:17 +0200 |
---|---|---|
committer | Till Hoeppner | 2014-10-21 16:15:10 +0200 |
commit | fc27f8cee888acf70683badca9edadb45544822c (patch) | |
tree | f39314f857e92a1e5a19f9675205750adf8919f0 /src/lib.rs | |
parent | ce640c2c25b0e16c567553c5774d633c13cbf0ee (diff) | |
download | irsc-fc27f8cee888acf70683badca9edadb45544822c.tar.gz irsc-fc27f8cee888acf70683badca9edadb45544822c.tar.xz irsc-fc27f8cee888acf70683badca9edadb45544822c.zip |
Initial commit.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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; |