chore(deps): bump itertools (#3998)

This commit is contained in:
Matthias Seitz
2023-07-31 13:53:24 +02:00
committed by GitHub
parent ed3d7366a0
commit e2142481c0
7 changed files with 14 additions and 13 deletions

10
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"