Merge branch 'release/0.14.3'

This commit is contained in:
Isis Lovecruft 2018-01-20 01:06:08 +00:00
commit 87d4c78bae
Failed to extract signature
3 changed files with 11 additions and 11 deletions

View file

@ -4,11 +4,11 @@ If you have questions or comments, please feel free to email the
authors. authors.
For feature requests, suggestions, and bug reports, please open an issue on 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.) an email if you're opposed to using Github for whatever reason.)
Patches are welcomed as pull requests on 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`). 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 All issues on curve25519-dalek are mentored, if you want help with a bug just

View file

@ -1,12 +1,12 @@
[package] [package]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "0.14.2" version = "0.14.3"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>", authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"] "Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md" readme = "README.md"
license = "BSD-3-Clause" license = "BSD-3-Clause"
repository = "https://github.com/isislovecruft/curve25519-dalek" repository = "https://github.com/dalek-cryptography/curve25519-dalek"
homepage = "https://code.ciph.re/isis/curve25519-dalek" homepage = "https://dalek.rs/curve25519-dalek"
documentation = "https://docs.rs/curve25519-dalek" documentation = "https://docs.rs/curve25519-dalek"
categories = ["cryptography", "no-std"] categories = ["cryptography", "no-std"]
keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"] keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"]
@ -22,10 +22,10 @@ build = "build.rs"
rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"]
[badges] [badges]
travis-ci = { repository = "isislovecruft/curve25519-dalek", branch = "master"} travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"}
[dependencies.stdsimd] [dependencies.stdsimd]
git = "https://github.com/rust-lang-nursery/stdsimd" version = "0.0.4"
optional = true optional = true
[dependencies.serde] [dependencies.serde]
@ -65,7 +65,7 @@ arrayref = "0.3.4"
clear_on_drop = "=0.2.3" clear_on_drop = "=0.2.3"
[build-dependencies.stdsimd] [build-dependencies.stdsimd]
git = "https://github.com/rust-lang-nursery/stdsimd" version = "0.0.4"
optional = true optional = true
[build-dependencies.serde] [build-dependencies.serde]

View file

@ -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)
<img <img
width="50%" width="50%"
@ -36,7 +36,7 @@ decryption or signing and verification. Instead, it is a low-level library,
intended for other cryptographers who would like to implement their own intended for other cryptographers who would like to implement their own
primitives using this curve. (For an example of how one would implement a primitives using this curve. (For an example of how one would implement a
signature scheme using this library, see signature scheme using this library, see
[ed25519-dalek](https://github.com/isislovecruft/ed25519-dalek).) [ed25519-dalek](https://github.com/dalek-cryptography/ed25519-dalek).)
**USE AT YOUR OWN RISK** **USE AT YOUR OWN RISK**
@ -81,7 +81,7 @@ We intend to stabilise the following before curve25519-dalek-1.0.0:
## Contributing ## Contributing
Please see Please see
[CONTRIBUTING.md](https://github.com/isislovecruft/curve25519-dalek/blob/master/CONTRIBUTING.md). [CONTRIBUTING.md](https://github.com/dalek-cryptography/curve25519-dalek/blob/master/CONTRIBUTING.md).
Patches and pull requests should be make against the `develop` Patches and pull requests should be make against the `develop`
branch, **not** `master`. branch, **not** `master`.