From 280ae3877abbda5ef2b45b73ed08b6d715a3f97e Mon Sep 17 00:00:00 2001 From: Zachary Dziura Date: Mon, 19 Mar 2018 10:50:20 -0400 Subject: [PATCH] Release v2.0.1 Update `ramp` dependency to latest version, to fix compilation errors with latest Rust compiler. --- Cargo.toml | 10 +++++----- src/lib.rs | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 56076da..6d72d0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pumpkin" -version = "2.0.0" +version = "2.0.1" authors = ["Zach Dziura "] description = "A cryptographically secure prime number generator" repository = "https://github.com/zcdziura/pumpkin" @@ -11,10 +11,10 @@ readme = "README.md" [dependencies] clippy = {version = "0.0.*", optional = true} -custom_derive = "0.1.*" -newtype_derive = "0.1.*" -ramp = "0.2.*" -rand = "0.3.*" +custom_derive = "0.1" +newtype_derive = "0.1" +ramp = "0.3" +rand = "0.3" [lib] name = "pumpkin" diff --git a/src/lib.rs b/src/lib.rs index 6afcd33..43a5278 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -45,8 +45,10 @@ //! } //! ``` +#[allow(unused_imports)] #[macro_use] extern crate custom_derive; +#[allow(unused_imports)] #[macro_use] extern crate newtype_derive; extern crate ramp;