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;