From 4b8f2963d8f3d98fe15d170fba55f0355c248b16 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sat, 20 Jan 2018 00:54:46 +0000 Subject: [PATCH 1/4] Update links to point to new official repos. --- Cargo.toml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a05c2ec..04cd50c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" license = "BSD-3-Clause" -repository = "https://github.com/isislovecruft/curve25519-dalek" -homepage = "https://code.ciph.re/isis/curve25519-dalek" +repository = "https://github.com/dalek-cryptography/curve25519-dalek" +homepage = "https://dalek.rs/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek" categories = ["cryptography", "no-std"] keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"] diff --git a/README.md b/README.md index e968134..402924a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# curve25519-dalek [![](https://img.shields.io/crates/v/curve25519-dalek.svg)](https://crates.io/crates/curve25519-dalek) [![](https://docs.rs/curve25519-dalek/badge.svg)](https://docs.rs/curve25519-dalek) [![](https://travis-ci.org/isislovecruft/curve25519-dalek.svg?branch=master)](https://travis-ci.org/isislovecruft/curve25519-dalek) +# curve25519-dalek [![](https://img.shields.io/crates/v/curve25519-dalek.svg)](https://crates.io/crates/curve25519-dalek) [![](https://docs.rs/curve25519-dalek/badge.svg)](https://docs.rs/curve25519-dalek) [![](https://travis-ci.org/dalek-cryptography/curve25519-dalek.svg?branch=master)](https://travis-ci.org/dalek-cryptography/curve25519-dalek) Date: Sat, 20 Jan 2018 00:55:50 +0000 Subject: [PATCH 2/4] Update more links to point to the official CI and repos. --- CONTRIBUTING.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4ed1c17..86622d4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,11 +4,11 @@ If you have questions or comments, please feel free to email the authors. For feature requests, suggestions, and bug reports, please open an issue on -[our Github](https://github.com/isislovecruft/curve25519-dalek). (Or, send us +[our Github](https://github.com/dalek-cryptography/curve25519-dalek). (Or, send us an email if you're opposed to using Github for whatever reason.) Patches are welcomed as pull requests on -[our Github](https://github.com/isislovecruft/curve25519-dalek), as well as by +[our Github](https://github.com/dalek-cryptography/curve25519-dalek), as well as by email (preferably sent to all of the authors listed in `Cargo.toml`). All issues on curve25519-dalek are mentored, if you want help with a bug just diff --git a/Cargo.toml b/Cargo.toml index 04cd50c..b61277f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ build = "build.rs" rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] [badges] -travis-ci = { repository = "isislovecruft/curve25519-dalek", branch = "master"} +travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"} [dependencies.stdsimd] git = "https://github.com/rust-lang-nursery/stdsimd" From 6b4aa8548c4841667bf17e3bbf6daff5ace469d0 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sat, 20 Jan 2018 00:57:06 +0000 Subject: [PATCH 3/4] Specify stdsimd version. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b61277f..07c3d24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9e travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"} [dependencies.stdsimd] -git = "https://github.com/rust-lang-nursery/stdsimd" +version = "0.0.4" optional = true [dependencies.serde] @@ -65,7 +65,7 @@ arrayref = "0.3.4" clear_on_drop = "=0.2.3" [build-dependencies.stdsimd] -git = "https://github.com/rust-lang-nursery/stdsimd" +version = "0.0.4" optional = true [build-dependencies.serde] From da890be304f04cbc3f7f7d414d46780468681a31 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sat, 20 Jan 2018 00:57:36 +0000 Subject: [PATCH 4/4] Bump curve25519-dalek version to 0.14.3. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 07c3d24..f4a60ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.14.2" +version = "0.14.3" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md"