Don't put an explicit crate name

This commit is contained in:
Abhishek Chanda
2015-05-03 00:59:24 -07:00
parent 5dae4eb4e1
commit f61382c585
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ipnetwork" name = "ipnetwork"
version = "0.1.6" version = "0.1.7"
authors = ["Abhishek Chanda <abhishe.becsk@gmail.com>"] authors = ["Abhishek Chanda <abhishe.becsk@gmail.com>"]
description = "A library to work with IP CIDRs in Rust, heavily WIP" description = "A library to work with IP CIDRs in Rust, heavily WIP"
license = "Apache-2.0" license = "Apache-2.0"

View File

@ -1,5 +1,4 @@
#![crate_type = "lib"] #![crate_type = "lib"]
#![crate_name = "ipnetwork"]
#![feature(ip_addr)] #![feature(ip_addr)]
#[allow(dead_code)] #[allow(dead_code)]