From 1d8c64ef3705b650bcae28a2e2faa9910eb528ab Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 1 Jul 2015 15:49:03 -0400 Subject: [PATCH] Remove unneeded crate attributes These are overridden by Cargo anyway. --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9c5fc94..9754014 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,5 @@ //! A simple, thread-safe IRC library. -#![crate_name = "irc"] -#![crate_type = "lib"] + #![warn(missing_docs)] #[cfg(feature = "ctcp")] extern crate time;