From c2719ec27ed3ddc942e21f62e8398223171904f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Dec 2022 16:40:16 +0200 Subject: [PATCH] chore(deps): bump secp256k1 from 0.24.1 to 0.24.2 (#440) Bumps [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) from 0.24.1 to 0.24.2. - [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/compare/secp256k1-0.24.1...secp256k1-0.24.2) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- crates/interfaces/Cargo.toml | 4 ++-- crates/net/ecies/Cargo.toml | 2 +- crates/net/eth-wire/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 4 ++-- crates/storage/db/Cargo.toml | 4 ++-- crates/storage/provider/Cargo.toml | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb8d2e89b..913b7a45d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3937,9 +3937,9 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff55dc09d460954e9ef2fa8a7ced735a964be9981fd50e870b2b3b0705e14964" +checksum = "d9512ffd81e3a3503ed401f79c33168b9148c75038956039166cd750eaa037c3" dependencies = [ "rand 0.8.5", "secp256k1-sys", diff --git a/crates/interfaces/Cargo.toml b/crates/interfaces/Cargo.toml index 0c62714c4..f875b8121 100644 --- a/crates/interfaces/Cargo.toml +++ b/crates/interfaces/Cargo.toml @@ -28,7 +28,7 @@ futures = "0.3.25" tokio-stream = "0.1.11" rand = "0.8.5" arbitrary = { version = "1.1.7", features = ["derive"], optional = true } -secp256k1 = { version = "0.24.0", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } +secp256k1 = { version = "0.24.2", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } modular-bitfield = "0.11.2" [dev-dependencies] @@ -37,7 +37,7 @@ tokio = { version = "1.21.2", features = ["full"] } tokio-stream = { version = "0.1.11", features = ["sync"] } arbitrary = { version = "1.1.7", features = ["derive"]} hex-literal = "0.3" -secp256k1 = { version = "0.24.0", default-features = false, features = ["alloc", "recovery", "rand"] } +secp256k1 = { version = "0.24.2", default-features = false, features = ["alloc", "recovery", "rand"] } [features] bench = [] diff --git a/crates/net/ecies/Cargo.toml b/crates/net/ecies/Cargo.toml index 9934bf563..f87a67518 100644 --- a/crates/net/ecies/Cargo.toml +++ b/crates/net/ecies/Cargo.toml @@ -30,7 +30,7 @@ bytes = "1.2.1" rand = "0.8.5" ctr = "0.9.2" digest = "0.10.5" -secp256k1 = { version = "0.24.0", features = ["global-context", "rand-std", "recovery"] } +secp256k1 = { version = "0.24.2", features = ["global-context", "rand-std", "recovery"] } sha2 = "0.10.6" sha3 = "0.10.5" aes = "0.8.1" diff --git a/crates/net/eth-wire/Cargo.toml b/crates/net/eth-wire/Cargo.toml index 507e68e13..aa4c8b2cd 100644 --- a/crates/net/eth-wire/Cargo.toml +++ b/crates/net/eth-wire/Cargo.toml @@ -36,4 +36,4 @@ ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = tokio-util = { version = "0.7.4", features = ["io", "codec"] } hex-literal = "0.3" rand = "0.8" -secp256k1 = { version = "0.24.0", features = ["global-context", "rand-std", "recovery"] } +secp256k1 = { version = "0.24.2", features = ["global-context", "rand-std", "recovery"] } diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 5d50524c0..1d01fb1d3 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -23,7 +23,7 @@ tiny-keccak = { version = "2.0", features = ["keccak"] } ethbloom = { version = "0.13", features = ["codec"] } # crypto -secp256k1 = { version = "0.24.0", default-features = false, features = [ +secp256k1 = { version = "0.24.2", default-features = false, features = [ "alloc", "recovery", ] } @@ -57,4 +57,4 @@ test-fuzz = "3.0.4" # necessary so we don't hit a "undeclared 'std'": # https://github.com/paradigmxyz/reth/pull/177#discussion_r1021172198 -secp256k1 = "0.24.0" \ No newline at end of file +secp256k1 = "0.24.2" \ No newline at end of file diff --git a/crates/storage/db/Cargo.toml b/crates/storage/db/Cargo.toml index eaf85275e..aeb7e13b7 100644 --- a/crates/storage/db/Cargo.toml +++ b/crates/storage/db/Cargo.toml @@ -23,7 +23,7 @@ futures = "0.3.25" tokio-stream = "0.1.11" rand = "0.8.5" arbitrary = { version = "1.1.7", features = ["derive"], optional = true } -secp256k1 = { version = "0.24.0", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } +secp256k1 = { version = "0.24.2", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } modular-bitfield = "0.11.2" # misc @@ -45,7 +45,7 @@ arbitrary = { version = "1.1.7", features = ["derive"]} reth-db = { path = ".", features = ["test-utils","bench"]} # needed for test-fuzz to work properly, see https://github.com/paradigmxyz/reth/pull/177#discussion_r1021172198 -secp256k1 = "0.24.0" +secp256k1 = "0.24.2" reth-interfaces = { path = "../../interfaces",features=["bench"] } async-trait = "0.1.58" diff --git a/crates/storage/provider/Cargo.toml b/crates/storage/provider/Cargo.toml index 601a40bc0..ff49d5364 100644 --- a/crates/storage/provider/Cargo.toml +++ b/crates/storage/provider/Cargo.toml @@ -28,7 +28,7 @@ futures = "0.3.25" tokio-stream = "0.1.11" rand = "0.8.5" arbitrary = { version = "1.1.7", features = ["derive"], optional = true } -secp256k1 = { version = "0.24.0", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } +secp256k1 = { version = "0.24.2", default-features = false, features = ["alloc", "recovery", "rand"], optional = true } modular-bitfield = "0.11.2" [dev-dependencies] @@ -38,7 +38,7 @@ tokio = { version = "1.21.2", features = ["full"] } tokio-stream = { version = "0.1.11", features = ["sync"] } arbitrary = { version = "1.1.7", features = ["derive"]} hex-literal = "0.3" -secp256k1 = { version = "0.24.0", default-features = false, features = ["alloc", "recovery", "rand"] } +secp256k1 = { version = "0.24.2", default-features = false, features = ["alloc", "recovery", "rand"] } [features] bench = []