diff options
author | Till Hoeppner | 2015-04-18 14:55:40 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-18 14:55:40 +0200 |
commit | a8c80253d6361728db95e6a5640a91a341ad4ea5 (patch) | |
tree | 4755946bbf479a294e85457177884988e05c29c0 /src/lib.rs | |
parent | bb94e44ed6ec5b55823270192c00904cbfb24b6b (diff) | |
download | irsc-a8c80253d6361728db95e6a5640a91a341ad4ea5.tar.gz irsc-a8c80253d6361728db95e6a5640a91a341ad4ea5.tar.xz irsc-a8c80253d6361728db95e6a5640a91a341ad4ea5.zip |
Fix Option/Result confusions + fixes for stability
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,12 +1,9 @@ -#![feature(plugin, slicing_syntax, unboxed_closures)] -#![allow(unstable)] - +#![feature(plugin, collections)] #![plugin(regex_macros)] -extern crate regex; +extern crate regex; #[macro_use] extern crate log; - extern crate eventual; pub mod server; |