From d51eab196caa0ad58bb2df4c5099aa82e5eb3a1c Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Sun, 3 May 2015 01:09:03 -0700 Subject: [PATCH] Trying to make name resolution work --- Cargo.toml | 2 +- src/lib.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9c26307..caedbf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.1.7" +version = "0.1.8" 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 d808b18..6776ab8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,6 @@ #![crate_type = "lib"] #![feature(ip_addr)] #[allow(dead_code)] + +pub use ipnetwork::*; pub mod ipnetwork;