mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): bump itertools (#3998)
This commit is contained in:
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -5272,7 +5272,7 @@ dependencies = [
|
||||
"assert_matches",
|
||||
"futures",
|
||||
"futures-util",
|
||||
"itertools 0.10.5",
|
||||
"itertools 0.11.0",
|
||||
"pin-project",
|
||||
"rayon",
|
||||
"reth-db",
|
||||
@ -5613,7 +5613,7 @@ version = "0.1.0-alpha.4"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"derive_more",
|
||||
"itertools 0.10.5",
|
||||
"itertools 0.11.0",
|
||||
"parking_lot 0.12.1",
|
||||
"pin-project",
|
||||
"reth-db",
|
||||
@ -5633,7 +5633,7 @@ name = "reth-prune"
|
||||
version = "0.1.0-alpha.4"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"itertools 0.10.5",
|
||||
"itertools 0.11.0",
|
||||
"rayon",
|
||||
"reth-db",
|
||||
"reth-interfaces",
|
||||
@ -5839,7 +5839,7 @@ dependencies = [
|
||||
name = "reth-rpc-types"
|
||||
version = "0.1.0-alpha.4"
|
||||
dependencies = [
|
||||
"itertools 0.10.5",
|
||||
"itertools 0.11.0",
|
||||
"jsonrpsee-types",
|
||||
"rand 0.8.5",
|
||||
"reth-primitives",
|
||||
@ -5859,7 +5859,7 @@ dependencies = [
|
||||
"async-trait",
|
||||
"criterion",
|
||||
"futures-util",
|
||||
"itertools 0.10.5",
|
||||
"itertools 0.11.0",
|
||||
"num-traits",
|
||||
"paste",
|
||||
"pin-project",
|
||||
|
||||
@ -117,6 +117,7 @@ serde = { version = "1.0", default-features = false }
|
||||
rand = "0.8.5"
|
||||
strum = "0.25"
|
||||
rayon = "1.7"
|
||||
itertools = "0.11"
|
||||
|
||||
### proc-macros
|
||||
proc-macro2 = "1.0"
|
||||
|
||||
@ -32,7 +32,7 @@ thiserror.workspace = true
|
||||
# optional deps for the test-utils feature
|
||||
reth-rlp = { workspace = true, optional = true }
|
||||
tempfile = { version = "3.3", optional = true }
|
||||
itertools = { version = "0.10", optional = true }
|
||||
itertools = { workspace = true, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
reth-db = { path = "../../storage/db", features = ["test-utils"] }
|
||||
@ -42,7 +42,7 @@ reth-tracing = { path = "../../tracing" }
|
||||
assert_matches = "1.5.0"
|
||||
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||
reth-rlp.workspace = true
|
||||
itertools = "0.10"
|
||||
itertools.workspace = true
|
||||
|
||||
tempfile = "3.3"
|
||||
|
||||
|
||||
@ -20,8 +20,8 @@ reth-interfaces.workspace = true
|
||||
# misc
|
||||
tracing.workspace = true
|
||||
thiserror.workspace = true
|
||||
itertools = "0.10"
|
||||
rayon = "1.6.0"
|
||||
itertools.workspace = true
|
||||
rayon.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
# reth
|
||||
|
||||
@ -19,7 +19,7 @@ reth-rlp.workspace = true
|
||||
thiserror.workspace = true
|
||||
|
||||
# misc
|
||||
itertools = "0.10"
|
||||
itertools.workspace = true
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json.workspace = true
|
||||
jsonrpsee-types.workspace = true
|
||||
|
||||
@ -40,7 +40,7 @@ serde.workspace = true
|
||||
# misc
|
||||
thiserror.workspace = true
|
||||
aquamarine = "0.3.0"
|
||||
itertools = "0.10.5"
|
||||
itertools.workspace = true
|
||||
rayon.workspace = true
|
||||
num-traits = "0.2.15"
|
||||
|
||||
@ -56,7 +56,7 @@ reth-rlp.workspace = true
|
||||
reth-revm = { path = "../revm" }
|
||||
reth-trie = { path = "../trie", features = ["test-utils"] }
|
||||
|
||||
itertools = "0.10.5"
|
||||
itertools.workspace = true
|
||||
tokio = { workspace = true, features = ["rt", "sync", "macros"] }
|
||||
assert_matches = "1.5.0"
|
||||
rand.workspace = true
|
||||
|
||||
@ -25,7 +25,7 @@ tracing.workspace = true
|
||||
|
||||
# misc
|
||||
auto_impl = "1.0"
|
||||
itertools = "0.10"
|
||||
itertools.workspace = true
|
||||
pin-project.workspace = true
|
||||
derive_more = "0.99"
|
||||
parking_lot = "0.12"
|
||||
|
||||
Reference in New Issue
Block a user