diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -1,7 +1,7 @@ [package] name = "irsc" -version = "0.0.3" +version = "0.1.0" authors = ["Till Hoeppner <till@hoeppner.ws>"] description = "A lightweight library for building IRC bots." documentation = "https://tilpner.github.io/irsc" @@ -1,6 +1,9 @@ -#![feature(plugin, collections, custom_derive, slice_patterns)] +#![feature(plugin, custom_derive, slice_patterns)] #![plugin(regex_macros)] +#![deny(warnings)] +#![allow(unused_imports)] + extern crate regex; #[macro_use] extern crate log; |