aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-04-01 23:29:45 +0200
committerTill Hoeppner2015-04-01 23:29:45 +0200
commita02f3c09482807220c5642b0e03d8f2d8aea243a (patch)
tree19a8a91aabb11755b99520cbe7689cbb8b6f8ad5 /src/lib.rs
parentbead9324f053957f73042b1e33905aaa73b57649 (diff)
downloadilc-a02f3c09482807220c5642b0e03d8f2d8aea243a.tar.gz
ilc-a02f3c09482807220c5642b0e03d8f2d8aea243a.tar.xz
ilc-a02f3c09482807220c5642b0e03d8f2d8aea243a.zip
Don't match with regex anymore
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0e49d17..1cceb27 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,9 @@
-#![feature(plugin)]
+#![feature(plugin, slice_patterns, convert, core)]
#![plugin(regex_macros)]
extern crate regex;
extern crate chrono;
+#[macro_use]
+extern crate log as l;
pub mod log;
pub mod format;