From 925e328e5d171dd860a6eebfe190584b9608d15f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 18:47:45 +0000 Subject: [PATCH] Update secp256k1 requirement from 0.23.0 to 0.31.1 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/secp256k1-0.29.1/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits/secp256k1-0.29.1) --- updated-dependencies: - dependency-name: secp256k1 dependency-version: 0.29.1 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..cb6534807 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.31.1", 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 }