From 84f9b707631e7ec8715ea97cba3b1e1b5055d33c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2020 10:53:14 +0200 Subject: [PATCH] Update curve25519-dalek requirement from 2.0.0 to 3.0.0 (#1753) * Update curve25519-dalek requirement from 2.0.0 to 3.0.0 Updates the requirements on [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) to permit the latest version. - [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases) - [Changelog](https://github.com/dalek-cryptography/curve25519-dalek/blob/master/CHANGELOG.md) - [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/2.0.0...3.0.0) Signed-off-by: dependabot[bot] * *: Add CHANGELOG and Cargo.toml entries Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden Co-authored-by: Roman Borschel --- CHANGELOG.md | 2 +- protocols/noise/CHANGELOG.md | 2 +- protocols/noise/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e51e123..fcdba9cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ # Version 0.28.2 [unreleased] -- Update `libp2p-gossipsub`. +- Update `libp2p-gossipsub` and `libp2p-noise`. # Version 0.28.1 [2020-09-10] diff --git a/protocols/noise/CHANGELOG.md b/protocols/noise/CHANGELOG.md index 6f2e5021..10971e27 100644 --- a/protocols/noise/CHANGELOG.md +++ b/protocols/noise/CHANGELOG.md @@ -1,6 +1,6 @@ # 0.24.1 [unreleased] -- Update `sha2` dependency. +- Update dependencies. # 0.24.0 [2020-09-09] diff --git a/protocols/noise/Cargo.toml b/protocols/noise/Cargo.toml index e91b8ede..8be5995d 100644 --- a/protocols/noise/Cargo.toml +++ b/protocols/noise/Cargo.toml @@ -9,7 +9,7 @@ edition = "2018" [dependencies] bytes = "0.5" -curve25519-dalek = "2.0.0" +curve25519-dalek = "3.0.0" futures = "0.3.1" lazy_static = "1.2" libp2p-core = { version = "0.22.0", path = "../../core" }