From 1dac334b8422c7f0d862d65148d3a9e144ca9fa8 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 21 Feb 2017 20:59:04 +0000 Subject: [PATCH 1/3] Whitespace fix. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3746cbb..d6a9cb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ lto = false # controls `-C lto` for binaries and staticlibs debug-assertions = true # controls whether debug assertions are enabled codegen-units = 1 # controls whether the compiler passes `-C codegen-units` # `codegen-units` is ignored when `lto = true` - panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort' +panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort' # The release profile, used for `cargo build --release`. [profile.release] From 78701d5441fe2ae6d6414b478683b9f5cf61c2df Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 21 Feb 2017 20:59:17 +0000 Subject: [PATCH 2/3] Bump version to 0.4.0. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d6a9cb0..2733c45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.3.0" +version = "0.4.0" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" diff --git a/README.md b/README.md index 074dc28..d6dd6e2 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Extensive documentation is available [here](https://docs.rs/curve25519-dalek). To install, add the following to the dependencies section of your project's `Cargo.toml`: - curve25519-dalek = "^0.3" + curve25519-dalek = "^0.4" Then, in your library or executable source, add: From 44e7d500db2f4aea377760e78d92ba4fed090773 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 21 Feb 2017 21:01:58 +0000 Subject: [PATCH 3/3] Remove unused import of PartialEq and Eq in curve module. --- src/curve.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/curve.rs b/src/curve.rs index da10163..9dc6f22 100644 --- a/src/curve.rs +++ b/src/curve.rs @@ -80,7 +80,6 @@ use core::fmt::Debug; use core::iter::Iterator; use core::ops::{Add, Sub, Neg, Index}; -use core::cmp::{PartialEq, Eq}; use constants; use field::FieldElement;