mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore(deps): bump enr + secp256k1 (#2443)
This commit is contained in:
@@ -26,7 +26,7 @@ futures = "0.3"
|
||||
tokio-stream = "0.1.11"
|
||||
rand = "0.8.5"
|
||||
arbitrary = { version = "1.1.7", features = ["derive"], optional = true }
|
||||
secp256k1 = { version = "0.26.0", default-features = false, features = [
|
||||
secp256k1 = { version = "0.27.0", default-features = false, features = [
|
||||
"alloc",
|
||||
"recovery",
|
||||
"rand",
|
||||
@@ -40,7 +40,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.26.0", default-features = false, features = [
|
||||
secp256k1 = { version = "0.27.0", default-features = false, features = [
|
||||
"alloc",
|
||||
"recovery",
|
||||
"rand",
|
||||
|
||||
@@ -19,13 +19,13 @@ reth-net-nat = { path = "../nat" }
|
||||
|
||||
# ethereum
|
||||
discv5 = { git = "https://github.com/sigp/discv5" }
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery",
|
||||
"serde"
|
||||
] }
|
||||
enr = { version = "0.8.0", default-features = false, features = [
|
||||
enr = { version = "0.8.1", default-features = false, features = [
|
||||
"rust-secp256k1",
|
||||
] }
|
||||
|
||||
|
||||
@@ -14,13 +14,13 @@ reth-net-common = { path = "../common" }
|
||||
reth-rlp = { path = "../../rlp" }
|
||||
|
||||
# ethereum
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery",
|
||||
"serde"
|
||||
] }
|
||||
enr = { version = "0.8.0", default-features = false, features = ["rust-secp256k1"] }
|
||||
enr = { version = "0.8.1", default-features = false, features = ["rust-secp256k1"] }
|
||||
|
||||
# async/futures
|
||||
tokio = { version = "1", features = ["io-util", "net", "time"] }
|
||||
|
||||
@@ -30,7 +30,7 @@ byteorder = "1.4.3"
|
||||
rand = "0.8.5"
|
||||
ctr = "0.9.2"
|
||||
digest = "0.10.5"
|
||||
secp256k1 = { version = "0.26.0", features = ["global-context", "rand-std", "recovery"] }
|
||||
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std", "recovery"] }
|
||||
sha2 = "0.10.6"
|
||||
sha3 = "0.10.5"
|
||||
aes = "0.8.1"
|
||||
|
||||
@@ -47,7 +47,7 @@ tokio-util = { version = "0.7.4", features = ["io", "codec"] }
|
||||
hex-literal = "0.3"
|
||||
hex = "0.4"
|
||||
rand = "0.8"
|
||||
secp256k1 = { version = "0.26.0", features = ["global-context", "rand-std", "recovery"] }
|
||||
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std", "recovery"] }
|
||||
|
||||
arbitrary = { version = "1.1.7", features = ["derive"] }
|
||||
proptest = { version = "1.0" }
|
||||
|
||||
@@ -60,13 +60,13 @@ async-trait = "0.1"
|
||||
linked_hash_set = "0.1"
|
||||
linked-hash-map = "0.5.6"
|
||||
rand = "0.8"
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery",
|
||||
] }
|
||||
|
||||
enr = { version = "0.8.0", features = ["rust-secp256k1"], optional = true }
|
||||
enr = { version = "0.8.1", features = ["rust-secp256k1"], optional = true }
|
||||
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false, optional = true }
|
||||
tempfile = { version = "3.3", optional = true }
|
||||
|
||||
@@ -88,7 +88,7 @@ ethers-providers = { git = "https://github.com/gakonst/ethers-rs", default-featu
|
||||
ethers-signers = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
|
||||
ethers-middleware = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
|
||||
|
||||
enr = { version = "0.8.0", features = ["serde", "rust-secp256k1"] }
|
||||
enr = { version = "0.8.1", features = ["serde", "rust-secp256k1"] }
|
||||
|
||||
# misc
|
||||
hex = "0.4"
|
||||
|
||||
@@ -27,7 +27,7 @@ fixed-hash = { version = "0.8", default-features = false, features = [
|
||||
] }
|
||||
|
||||
# crypto
|
||||
secp256k1 = { version = "0.26.0", default-features = false, features = [
|
||||
secp256k1 = { version = "0.27.0", default-features = false, features = [
|
||||
"global-context",
|
||||
"alloc",
|
||||
"recovery",
|
||||
@@ -75,7 +75,7 @@ proptest-derive = "0.3"
|
||||
|
||||
# necessary so we don't hit a "undeclared 'std'":
|
||||
# https://github.com/paradigmxyz/reth/pull/177#discussion_r1021172198
|
||||
secp256k1 = "0.26.0"
|
||||
secp256k1 = "0.27.0"
|
||||
criterion = "0.4.0"
|
||||
pprof = { version = "0.11", features = [
|
||||
"flamegraph",
|
||||
|
||||
@@ -46,7 +46,7 @@ tokio-util = "0.7"
|
||||
pin-project = "1.0"
|
||||
|
||||
bytes = "1.4"
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery"
|
||||
|
||||
@@ -31,7 +31,7 @@ tracing = "0.1.37"
|
||||
|
||||
# crypto
|
||||
rand = { version = "0.8", optional = true }
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery",
|
||||
@@ -41,7 +41,7 @@ secp256k1 = { version = "0.26.0", features = [
|
||||
thiserror = "1"
|
||||
|
||||
# enr
|
||||
enr = { version = "0.8.0", features = ["serde", "rust-secp256k1"], optional = true }
|
||||
enr = { version = "0.8.1", features = ["serde", "rust-secp256k1"], optional = true }
|
||||
|
||||
# ethers
|
||||
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false, optional = true }
|
||||
@@ -70,7 +70,7 @@ futures = "0.3"
|
||||
tokio = { version = "1", features = ["io-util", "net", "macros", "rt-multi-thread", "time"] }
|
||||
|
||||
# crypto
|
||||
secp256k1 = { version = "0.26.0", features = [
|
||||
secp256k1 = { version = "0.27.0", features = [
|
||||
"global-context",
|
||||
"rand-std",
|
||||
"recovery",
|
||||
|
||||
@@ -22,7 +22,7 @@ parity-scale-codec = { version = "3.2.1", features = ["bytes"] }
|
||||
futures = "0.3.25"
|
||||
tokio-stream = "0.1.11"
|
||||
rand = "0.8.5"
|
||||
secp256k1 = { version = "0.26.0", default-features = false, features = [
|
||||
secp256k1 = { version = "0.27.0", default-features = false, features = [
|
||||
"alloc",
|
||||
"recovery",
|
||||
"rand",
|
||||
@@ -60,7 +60,7 @@ tokio = { version = "1.21.2", features = ["full"] }
|
||||
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.26.0"
|
||||
secp256k1 = "0.27.0"
|
||||
|
||||
async-trait = "0.1.58"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user