diff options
author | Till Hoeppner | 2015-04-01 23:29:45 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-01 23:29:45 +0200 |
commit | a02f3c09482807220c5642b0e03d8f2d8aea243a (patch) | |
tree | 19a8a91aabb11755b99520cbe7689cbb8b6f8ad5 /src/lib.rs | |
parent | bead9324f053957f73042b1e33905aaa73b57649 (diff) | |
download | ilc-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.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |