Release v2.0.1

Update `ramp` dependency to latest version, to fix compilation errors
with latest Rust compiler.
This commit is contained in:
Zachary Dziura 2018-03-19 10:50:20 -04:00
parent da4b3b60b5
commit 280ae3877a
2 changed files with 7 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pumpkin" name = "pumpkin"
version = "2.0.0" version = "2.0.1"
authors = ["Zach Dziura <zcdziura@gmail.com>"] authors = ["Zach Dziura <zcdziura@gmail.com>"]
description = "A cryptographically secure prime number generator" description = "A cryptographically secure prime number generator"
repository = "https://github.com/zcdziura/pumpkin" repository = "https://github.com/zcdziura/pumpkin"
@ -11,10 +11,10 @@ readme = "README.md"
[dependencies] [dependencies]
clippy = {version = "0.0.*", optional = true} clippy = {version = "0.0.*", optional = true}
custom_derive = "0.1.*" custom_derive = "0.1"
newtype_derive = "0.1.*" newtype_derive = "0.1"
ramp = "0.2.*" ramp = "0.3"
rand = "0.3.*" rand = "0.3"
[lib] [lib]
name = "pumpkin" name = "pumpkin"

View file

@ -45,8 +45,10 @@
//! } //! }
//! ``` //! ```
#[allow(unused_imports)]
#[macro_use] #[macro_use]
extern crate custom_derive; extern crate custom_derive;
#[allow(unused_imports)]
#[macro_use] #[macro_use]
extern crate newtype_derive; extern crate newtype_derive;
extern crate ramp; extern crate ramp;