From 6a959db07af9bdfe271150a4dab1b4721b0790a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jun 2022 01:51:39 +0000 Subject: [PATCH] Update secp256k1 requirement from 0.20 to 0.23 Updates the requirements on [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) to permit the latest version. - [Release notes](https://github.com/rust-bitcoin/rust-secp256k1/releases) - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/compare/0.20.1...secp256k1-0.23.1) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ethcontract/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcontract/Cargo.toml b/ethcontract/Cargo.toml index 7e120f9..cccdcbc 100644 --- a/ethcontract/Cargo.toml +++ b/ethcontract/Cargo.toml @@ -40,7 +40,7 @@ hex = "0.4" jsonrpc-core = "18.0" lazy_static = "1.4" primitive-types = { version = "0.11", features = ["fp-conversion"] } -secp256k1 = { version = "0.20", features = ["recovery"] } +secp256k1 = { version = "0.23", features = ["recovery"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0"