From 55fb0ff60a59ae73a7a313fd8f16f12c90e9cb97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jan 2023 16:17:05 +0000 Subject: [PATCH] Update ed25519 requirement from 1.4.1 to 2.0.0 Updates the requirements on [ed25519](https://github.com/RustCrypto/signatures) to permit the latest version. - [Release notes](https://github.com/RustCrypto/signatures/releases) - [Commits](https://github.com/RustCrypto/signatures/commits/ed25519/v2.0.0) --- updated-dependencies: - dependency-name: ed25519 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- common/Cargo.toml | 2 +- session/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index ffd0a0a..ab600e8 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -12,7 +12,7 @@ rand = { version = "0.8.5", optional = true } salty = { git = "https://github.com/oxidecomputer/salty", branch = "v0.2.0-zeroize", optional = true } [dev-dependencies] -ed25519 = { version = "1.4.1" } +ed25519 = { version = "2.0.0" } ed25519-dalek = { version = "1.0.1", features = ["u64_backend"]} salty = { git = "https://github.com/oxidecomputer/salty", branch = "v0.2.0-zeroize" } rand = "0.8.5" diff --git a/session/Cargo.toml b/session/Cargo.toml index 8529f28..d3a9061 100644 --- a/session/Cargo.toml +++ b/session/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1.0.136", default-features = false, features = ["derive"] # The ring API requires a KDF and is a bit more awkward to use. # rand_core = { version = "0.6.3", features = ["getrandom"] } -ed25519 = { version = "1.4.1" } +ed25519 = { version = "2.0.0" } ed25519-dalek = { version = "1.0.1", features = ["u64_backend"]} x25519-dalek = { version = "2.0.0-pre.1" } sha3 = "0.10.1"