From 7611bf40ee6a818216bca4c62d47c59763bfbb6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 00:33:54 +0000 Subject: [PATCH] Update secp256k1 requirement from 0.21 to 0.27 Updates the requirements on [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) to permit the latest version. - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits/secp256k1-0.27.0) --- 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 6d8af8c4..0d1c76f1 100644 --- a/ethcontract/Cargo.toml +++ b/ethcontract/Cargo.toml @@ -44,7 +44,7 @@ jsonrpc-core = "18.0" lazy_static = "1.4" primitive-types = { version = "0.10", features = ["fp-conversion"] } rlp = { version = "0.5", default-features = false, optional = true } -secp256k1 = { version = "0.21", features = ["recovery"] } +secp256k1 = { version = "0.27", features = ["recovery"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0"