From 5a45d5a932a12524d87a4c8456e42e4ba2337116 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 12:07:22 +0000 Subject: [PATCH] Update secp256k1 requirement from 0.23.0 to 0.24.2 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/secp256k1-0.24.2/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits/secp256k1-0.24.2) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- chain-evm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain-evm/Cargo.toml b/chain-evm/Cargo.toml index 251b5b573..e6895d4fb 100644 --- a/chain-evm/Cargo.toml +++ b/chain-evm/Cargo.toml @@ -12,7 +12,7 @@ base64 = { version = "0.13.0", default-features = false, features = ["alloc"] } blake2 = { version = "0.9.1", git = "https://github.com/near/near-blake2.git", rev = "736ff607cc8160af87ffa697c14ebef85050138f", default-features = false } bn = { package = "aurora-bn", version = "0.1.0", git = "https://github.com/aurora-is-near/aurora-bn.git", default-features = false, features = ["std"] } libsecp256k1 = { version = "0.7.0", default-features = false, features = ["static-context"] } -secp256k1 = { version = "0.23.0", features = ["global-context", "rand-std", "recovery"] } +secp256k1 = { version = "0.24.2", features = ["global-context", "rand-std", "recovery"] } num = { version = "0.4.0", default-features = false, features = ["alloc"] } ripemd = { version = "0.1", default-features = false } rlp = { version = "0.5.1", default-features = false }