Skip to content

Commit 269bfb9

Browse files
deps(monorepo): update cargo pre-1.0 packages
1 parent 1c0ab08 commit 269bfb9

11 files changed

Lines changed: 1170 additions & 915 deletions

File tree

Cargo.lock

Lines changed: 1134 additions & 879 deletions
Large diffs are not rendered by default.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,13 @@ revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev =
166166

167167

168168
# Alloy
169-
alloy-sol-types = { version = "0.7.0", features = ["json"] }
170-
alloy-sol-macro = { version = "0.7.0", features = ["json"] }
169+
alloy-sol-types = { version = "0.8.12", features = ["json"] }
170+
alloy-sol-macro = { version = "0.8.12", features = ["json"] }
171171
alloy-rlp = { version = "0.3.4" }
172172
alloy-rlp-derive = { version = "0.3.4" }
173-
alloy-primitives = { version = "0.7.0", features = ["rlp"] }
174-
alloy-json-abi = "0.7.0"
175-
alloy-dyn-abi = "0.7.0 "
173+
alloy-primitives = { version = "0.8.12", features = ["rlp"] }
174+
alloy-json-abi = "0.8.12"
175+
alloy-dyn-abi = "0.8.12"
176176

177177
# Alloy core
178178
alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "39b8695", features = [
@@ -202,12 +202,12 @@ colored = "2.0"
202202
prometheus = "0.13.4"
203203

204204
# Metrics
205-
metrics-exporter-prometheus = "=0.12.1"
206-
metrics-util = "0.15.0"
205+
metrics-exporter-prometheus = "=0.16.0"
206+
metrics-util = "0.18.0"
207207
metrics-process = "=1.0.14"
208208

209209
# Logging
210-
env_logger = "0.10.0"
210+
env_logger = "0.11.5"
211211

212212
# error handling
213213
thiserror = "1.0.44"
@@ -216,7 +216,7 @@ anyhow = "1.0.44"
216216

217217
# http/rpc
218218
hyper = "0.14.25"
219-
hyper-tls = "0.5.0"
219+
hyper-tls = "0.6.0"
220220
reqwest = { version = "0.12.2", default-features = false }
221221

222222
# Serde
@@ -238,22 +238,22 @@ phf = "0.11.2"
238238
phf_codegen = "0.11.2"
239239

240240
# metrics
241-
metrics = "0.21.1"
241+
metrics = "0.24.0"
242242

243243
# misc
244-
backon = "0.4.4"
244+
backon = "0.5.0"
245245
c-kzg = "0.4.0"
246246
hex-literal = "0.4.1"
247247
rayon = "1.7.0"
248248
dotenvy = "0.15.7"
249249
semver = "1.0"
250250
lazy_static = "1.4.0"
251251
once_cell = "1.18.0"
252-
itertools = "0.11.0"
252+
itertools = "0.13.0"
253253
parking_lot = "0.12.1"
254254
toml = "0.8.2"
255255
auto_impl = "1.1.0"
256-
strum = "0.25.0"
256+
strum = "0.26.3"
257257
serial_test = "2.0.0"
258258
derive_more = "0.99.17"
259259
rkyv = { git = "https://github.com/rkyv/rkyv.git", branch = "0.7-hashbrown-0.14", features = [
@@ -266,7 +266,7 @@ bitflags = "2.5.0"
266266
chrono = "0.4.19"
267267

268268
arrow = "51.0.0"
269-
polars = { version = "0.38.3", features = ["lazy"] }
269+
polars = { version = "0.44.2", features = ["lazy"] }
270270
parquet = { version = "51.0.0", features = ["async"] }
271271
indicatif = "0.17.8"
272272

apps/eth-engine/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ directories = "5.0.1"
3333

3434
# Async
3535
tokio = { workspace = true }
36-
async-scoped = { version = "0.7.1", features = ["use-tokio"] }
36+
async-scoped = { version = "0.9.0", features = ["use-tokio"] }
3737
futures.workspace = true
3838
reqwest.workspace = true
3939

@@ -110,14 +110,14 @@ prettytable-rs = "0.10"
110110

111111
# banner
112112
indoc = "2"
113-
crossterm = "0.27.0"
113+
crossterm = "0.28.1"
114114
regex.workspace = true
115115
rand = "0.8.5"
116116
ansi_term = "0.12.1"
117117
ansi-parser = "0.9.0"
118118
ahash = "0.8.11"
119119

120-
tikv-jemallocator = { version = "0.5.0", features = [
120+
tikv-jemallocator = { version = "0.6.0", features = [
121121
"unprefixed_malloc_on_supported_platforms",
122122
] }
123123
const_format = { version = "0.2.32", features = ["rust_1_64"] }

crates/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ tracing.workspace = true
2929
chrono.workspace = true
3030
num = { version = "0.4.1", features = ["rand"] }
3131
time = { version = "0.3.36", features = ["macros"] }
32-
polars = { version = "0.42.0", features = ["docs-selection"] }
32+
polars = { version = "0.44.2", features = ["docs-selection"] }
3333
uuid = { version = "1.10.0", features = ["v4", "fast-rng"] }
3434
rust_decimal = "1.34.3"
3535
statrs = "0.17.1"
3636
thiserror.workspace = true
3737
plotters = "0.3.5"
38-
plotly = "0.9.0"
38+
plotly = "0.10.0"
3939
derive_builder = "0.20.0"
4040
rand = "0.8.5"
4141
rand_distr = "0.4.3"

crates/eth-engine-database/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
6060
reth-codecs.workspace = true
6161
reth-codecs-derive.workspace = true
6262
proptest = "1.4"
63-
proptest-derive = "0.4"
63+
proptest-derive = "0.5.0"
6464
arbitrary = "1.3"
6565
rand = "0.8.5"
6666
modular-bitfield = "0.11.2"
@@ -113,10 +113,10 @@ redefined.workspace = true
113113
derive_more = "0.99.17"
114114
paste = "1.0.14"
115115
petgraph = "0.6.4"
116-
itertools = "0.12.0"
116+
itertools = "0.13.0"
117117
rayon.workspace = true
118-
strum = "0.25"
119-
strum_macros = "0.25"
118+
strum = "0.26.3"
119+
strum_macros = "0.26.4"
120120
async-trait = "0.1.73"
121121
reqwest = { workspace = true, features = ["stream"] }
122122
toml = "0.8.9"

crates/eth-engine-inspect/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async-trait.workspace = true
4646
rayon.workspace = true
4747
futures.workspace = true
4848
tokio.workspace = true
49-
async-scoped = { version = "0.7.1", features = ["use-tokio"] }
49+
async-scoped = { version = "0.9.0", features = ["use-tokio"] }
5050

5151
# reth
5252
reth-primitives.workspace = true
@@ -96,7 +96,7 @@ reth-db.workspace = true
9696
tokio.workspace = true
9797
criterion = { version = "0.5" }
9898
rand = "0.8.5"
99-
statrs = "0.16"
99+
statrs = "0.17.1"
100100

101101
[features]
102102
sorella-server = ["local-reth", "local-clickhouse"]

crates/eth-engine-libmdbx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ffi = { package = "reth-mdbx-sys", git = "https://github.com/paradigmxyz/reth",
2828
[dev-dependencies]
2929
tempfile = "3.8"
3030
criterion = "0.5"
31-
pprof = "0.13"
31+
pprof = "0.14.0"
3232

3333
[target.'cfg(not(windows))'.dependencies]
3434
libffi = "3.2.0"

crates/eth-engine-metrics/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ hyper.workspace = true
4949
dashmap.workspace = true
5050

5151
[target.'cfg(unix)'.dependencies]
52-
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
52+
tikv-jemalloc-ctl = { version = "0.6.0", optional = true }
5353

5454
[target.'cfg(target_os = "linux")'.dependencies]
55-
procfs = "0.16.0"
55+
procfs = "0.17.0"
5656

5757
[features]
5858
jemalloc = ["dep:tikv-jemalloc-ctl"]

crates/eth-engine-pricing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ reaper-eth-engine-macros.workspace = true
2222
reaper-eth-engine-types.workspace = true
2323
reaper-eth-engine-metrics.workspace = true
2424

25-
itertools = "0.12.0"
25+
itertools = "0.13.0"
2626
redefined.workspace = true
2727

2828
futures.workspace = true
@@ -46,7 +46,7 @@ malachite = { workspace = true, features = ["enable_serde"] }
4646
# serde
4747
serde = { workspace = true, features = ["derive"] }
4848
serde_json.workspace = true
49-
erased-serde = "0.3.31"
49+
erased-serde = "0.4.5"
5050
serde_with.workspace = true
5151
serde_repr.workspace = true
5252
alloy-rlp = { workspace = true, features = ["arrayvec"] }
@@ -71,7 +71,7 @@ async-trait.workspace = true
7171
num-bigfloat = "1.7.0"
7272
parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
7373
proptest = "1.4"
74-
proptest-derive = "0.4"
74+
proptest-derive = "0.5.0"
7575
arbitrary = "1.3"
7676
rand = "0.8.5"
7777
modular-bitfield = "0.11.2"

crates/eth-engine-pricing/pricing-test-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ reaper-eth-engine-reth-tracing = { path = "../../eth-engine-reth-tracing", featu
2525
] }
2626
reaper-eth-engine-macros = { path = "../../eth-engine-macros" }
2727

28-
itertools = "0.12.0"
28+
itertools = "0.13.0"
2929
redefined.workspace = true
3030

3131
futures.workspace = true
@@ -48,7 +48,7 @@ malachite = { workspace = true, features = ["enable_serde"] }
4848
# serde
4949
serde = { workspace = true, features = ["derive"] }
5050
serde_json.workspace = true
51-
erased-serde = "0.3.31"
51+
erased-serde = "0.4.5"
5252
serde_with.workspace = true
5353
serde_repr.workspace = true
5454
alloy-rlp = { workspace = true, features = ["arrayvec"] }
@@ -72,7 +72,7 @@ async-trait.workspace = true
7272
num-bigfloat = "1.7.0"
7373
parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
7474
proptest = "1.4"
75-
proptest-derive = "0.4"
75+
proptest-derive = "0.5.0"
7676
arbitrary = "1.3"
7777
modular-bitfield = "0.11.2"
7878
bytes = "1.5"

0 commit comments

Comments
 (0)