Trying to make name resolution work

This commit is contained in:
Abhishek Chanda
2015-05-03 01:09:03 -07:00
parent e3aeff7a08
commit d51eab196c
2 changed files with 3 additions and 1 deletions

View File

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

View File

@ -1,4 +1,6 @@
#![crate_type = "lib"]
#![feature(ip_addr)]
#[allow(dead_code)]
pub use ipnetwork::*;
pub mod ipnetwork;