aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-04-18 14:55:40 +0200
committerTill Hoeppner2015-04-18 14:55:40 +0200
commita8c80253d6361728db95e6a5640a91a341ad4ea5 (patch)
tree4755946bbf479a294e85457177884988e05c29c0 /src/lib.rs
parentbb94e44ed6ec5b55823270192c00904cbfb24b6b (diff)
downloadirsc-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.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7cf7c9d..577770d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;