Remove vestigial CFGs from rink-irc

This commit is contained in:
Tiffany Bennett 2016-10-07 14:31:42 -04:00
parent ff283ee4c5
commit 4401d2c0ef

View file

@ -2,14 +2,10 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
#[cfg(feature = "ircbot")]
extern crate irc;
#[cfg(feature = "ircbot")]
extern crate glob;
#[cfg(feature = "ircbot")]
extern crate rink;
#[cfg(feature = "ircbot")]
fn main() {
use irc::client::prelude::*;
use rink::*;
@ -82,8 +78,3 @@ fn main() {
thread.join().unwrap()
}
}
#[cfg(not(feature = "ircbot"))]
fn main() {
println!("Rink was not compiled with IRC support.");
}