From f61382c5853bcf7ae5ae8fbe05ff13c84dd3533f Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Sun, 3 May 2015 00:59:24 -0700 Subject: [PATCH] Don't put an explicit crate name --- Cargo.toml | 2 +- src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1e5731..9c26307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.1.6" +version = "0.1.7" authors = ["Abhishek Chanda "] description = "A library to work with IP CIDRs in Rust, heavily WIP" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 58ff879..2170b58 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![crate_type = "lib"] -#![crate_name = "ipnetwork"] #![feature(ip_addr)] #[allow(dead_code)]