Skip to content

Commit f8dc95b

Browse files
chore(monorepo): update cargo pre-1.0 packages
1 parent 1c0ab08 commit f8dc95b

File tree

13 files changed

+68
-68
lines changed

13 files changed

+68
-68
lines changed

Cargo.toml

Lines changed: 27 additions & 27 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"] }
171-
alloy-rlp = { version = "0.3.4" }
172-
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 "
169+
alloy-sol-types = { version = "0.7.7", features = ["json"] }
170+
alloy-sol-macro = { version = "0.7.7", features = ["json"] }
171+
alloy-rlp = { version = "0.3.11" }
172+
alloy-rlp-derive = { version = "0.3.11" }
173+
alloy-primitives = { version = "0.7.7", features = ["rlp"] }
174+
alloy-json-abi = "0.7.7"
175+
alloy-dyn-abi = "0.7.7"
176176

177177
# Alloy core
178178
alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "39b8695", features = [
@@ -189,8 +189,8 @@ alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy.git", rev = "39b86
189189

190190
# Async
191191
tokio = { version = "1.13.0", features = ["full", "tracing"] }
192-
futures = "0.3.28"
193-
async-trait = "0.1.73"
192+
futures = "0.3.31"
193+
async-trait = "0.1.88"
194194

195195
#Tracing
196196
tracing = "0.1.37"
@@ -202,79 +202,79 @@ 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.12.2"
206+
metrics-util = "0.15.1"
207207
metrics-process = "=1.0.14"
208208

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

212212
# error handling
213213
thiserror = "1.0.44"
214-
eyre = "0.6.8"
214+
eyre = "0.6.12"
215215
anyhow = "1.0.44"
216216

217217
# http/rpc
218-
hyper = "0.14.25"
218+
hyper = "0.14.32"
219219
hyper-tls = "0.5.0"
220-
reqwest = { version = "0.12.2", default-features = false }
220+
reqwest = { version = "0.12.15", default-features = false }
221221

222222
# Serde
223223
serde = "1.0.209"
224224
serde_derive = "1.0.209"
225225
serde_json = "1.0.127"
226226
serde_with = "3.4.0"
227-
serde_repr = "0.1.16"
227+
serde_repr = "0.1.20"
228228

229229
# cli
230230
clap = { version = "4.4.6", features = ["derive"] }
231231

232232
# Numbers
233-
malachite = "0.4.0"
234-
malachite-q = "0.4.0"
233+
malachite = "0.4.22"
234+
malachite-q = "0.4.22"
235235

236236
# phf
237-
phf = "0.11.2"
238-
phf_codegen = "0.11.2"
237+
phf = "0.11.3"
238+
phf_codegen = "0.11.3"
239239

240240
# metrics
241241
metrics = "0.21.1"
242242

243243
# misc
244244
backon = "0.4.4"
245-
c-kzg = "0.4.0"
245+
c-kzg = "0.4.2"
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"
252252
itertools = "0.11.0"
253-
parking_lot = "0.12.1"
254-
toml = "0.8.2"
253+
parking_lot = "0.12.3"
254+
toml = "0.8.22"
255255
auto_impl = "1.1.0"
256256
strum = "0.25.0"
257257
serial_test = "2.0.0"
258-
derive_more = "0.99.17"
258+
derive_more = "0.99.20"
259259
rkyv = { git = "https://github.com/rkyv/rkyv.git", branch = "0.7-hashbrown-0.14", features = [
260260
"validation",
261261
] }
262262
num_cpus = "1.16.0"
263263
redefined = { git = "https://github.com/SorellaLabs/redefined" }
264264
bytes = "1.5"
265265
bitflags = "2.5.0"
266-
chrono = "0.4.19"
266+
chrono = "0.4.41"
267267

268268
arrow = "51.0.0"
269269
polars = { version = "0.38.3", features = ["lazy"] }
270270
parquet = { version = "51.0.0", features = ["async"] }
271-
indicatif = "0.17.8"
271+
indicatif = "0.17.11"
272272

273273
# filesystem
274274
fs2 = "0.4.3"
275275
fs_extra = "1.3.0"
276276
filesize = "0.2.0"
277-
tar = "0.4.41"
277+
tar = "0.4.44"
278278
flate2 = "1.0.30"
279279

280280
# AWS

apps/eth-engine/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ reaper-eth-engine-libmdbx = { workspace = true, features = [
2020
] }
2121

2222
malachite.workspace = true
23-
toml = "0.8.2"
23+
toml = "0.8.22"
2424
indicatif.workspace = true
2525

2626
# filesystem
@@ -77,8 +77,8 @@ dotenvy.workspace = true
7777
num_cpus.workspace = true
7878
strum = { workspace = true, features = ["derive"] }
7979
thiserror.workspace = true
80-
human_bytes = "0.4.1"
81-
boyer-moore-magiclen = "0.2.16"
80+
human_bytes = "0.4.3"
81+
boyer-moore-magiclen = "0.2.20"
8282
comfy-table = "7.0"
8383
serde_json.workspace = true
8484

@@ -114,13 +114,13 @@ crossterm = "0.27.0"
114114
regex.workspace = true
115115
rand = "0.8.5"
116116
ansi_term = "0.12.1"
117-
ansi-parser = "0.9.0"
117+
ansi-parser = "0.9.1"
118118
ahash = "0.8.11"
119119

120-
tikv-jemallocator = { version = "0.5.0", features = [
120+
tikv-jemallocator = { version = "0.5.4", features = [
121121
"unprefixed_malloc_on_supported_platforms",
122122
] }
123-
const_format = { version = "0.2.32", features = ["rust_1_64"] }
123+
const_format = { version = "0.2.34", features = ["rust_1_64"] }
124124

125125
[build-dependencies]
126126
vergen = { version = "8.0.0", features = ["build", "cargo", "git", "gitcl"] }

apps/eth-order-fill-service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ reaper-eth.workspace = true
1010
alloy-primitives.workspace = true
1111
alloy-sol-types.workspace = true
1212
anyhow.workspace = true
13-
bigdecimal = "0.4.5"
13+
bigdecimal = "0.4.8"
1414
ethers.workspace = true
1515
reqwest.workspace = true
1616
serde_json.workspace = true

crates/core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ serde = { workspace = true, features = ["derive"] }
2727
serde_json.workspace = true
2828
tracing.workspace = true
2929
chrono.workspace = true
30-
num = { version = "0.4.1", features = ["rand"] }
31-
time = { version = "0.3.36", features = ["macros"] }
30+
num = { version = "0.4.3", features = ["rand"] }
31+
time = { version = "0.3.41", features = ["macros"] }
3232
polars = { version = "0.42.0", 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
37-
plotters = "0.3.5"
38-
plotly = "0.9.0"
39-
derive_builder = "0.20.0"
37+
plotters = "0.3.7"
38+
plotly = "0.9.1"
39+
derive_builder = "0.20.2"
4040
rand = "0.8.5"
4141
rand_distr = "0.4.3"
4242
yahoo_finance_api = "2.1.0"

crates/eth-engine-classifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ eyre.workspace = true
5959

6060
# tests feature (unique)
6161
thiserror = { workspace = true, optional = true }
62-
criterion = { version = "0.5", features = [
62+
criterion = { version = "0.5.1", features = [
6363
"async",
6464
"async_tokio",
6565
], optional = true }
@@ -76,7 +76,7 @@ reaper-eth-engine-database.workspace = true
7676
reaper-eth-engine-reth-tracing.workspace = true
7777
reaper-eth-engine-macros.workspace = true
7878

79-
criterion = "0.5"
79+
criterion = "0.5.1"
8080
strum = { workspace = true, features = ["derive"] }
8181
dotenvy.workspace = true
8282
tokio.workspace = true

crates/eth-engine-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ reaper-eth-engine-reth-tracing.workspace = true
8989
serial_test.workspace = true
9090
dotenvy.workspace = true
9191
tokio.workspace = true
92-
criterion = { version = "0.5", features = ["async", "async_tokio"] }
92+
criterion = { version = "0.5.1", features = ["async", "async_tokio"] }
9393

9494
[features]
9595
default = []

crates/eth-engine-database/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ reaper-eth-engine-libmdbx = { workspace = true, features = [
2323
] }
2424
reaper-eth-engine-reth-tracing.workspace = true
2525

26-
moka = { version = "0.12.7", features = ["sync"] }
26+
moka = { version = "0.12.10", features = ["sync"] }
2727
regex.workspace = true
2828

2929
# alloy
@@ -65,8 +65,8 @@ arbitrary = "1.3"
6565
rand = "0.8.5"
6666
modular-bitfield = "0.11.2"
6767
bytes = "1.5"
68-
zstd = "0.13"
69-
chrono = "0.4.35"
68+
zstd = "0.13.3"
69+
chrono = "0.4.41"
7070
dashmap.workspace = true
7171
polars.workspace = true
7272
arrow.workspace = true
@@ -110,22 +110,22 @@ parking_lot.workspace = true
110110
dotenvy.workspace = true
111111
bincode = "2.0.0-rc.3"
112112
redefined.workspace = true
113-
derive_more = "0.99.17"
113+
derive_more = "0.99.20"
114114
paste = "1.0.14"
115-
petgraph = "0.6.4"
116-
itertools = "0.12.0"
115+
petgraph = "0.6.5"
116+
itertools = "0.12.1"
117117
rayon.workspace = true
118118
strum = "0.25"
119-
strum_macros = "0.25"
120-
async-trait = "0.1.73"
119+
strum_macros = "0.25.3"
120+
async-trait = "0.1.88"
121121
reqwest = { workspace = true, features = ["stream"] }
122-
toml = "0.8.9"
122+
toml = "0.8.22"
123123
indicatif.workspace = true
124124
page_size = "0.6.0"
125-
schnellru = "0.2.2"
125+
schnellru = "0.2.4"
126126

127127
# benches
128-
criterion = "0.5"
128+
criterion = "0.5.1"
129129
human_bytes = "0.4.3"
130130
rkyv.workspace = true
131131
auto_impl.workspace = true
@@ -152,7 +152,7 @@ criterion = "0.5.1"
152152
[build-dependencies]
153153
reaper-eth-engine-types.workspace = true
154154
serde.workspace = true
155-
toml = "0.8.9"
155+
toml = "0.8.22"
156156
alloy-primitives.workspace = true
157157

158158
[[bench]]

crates/eth-engine-inspect/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ itertools.workspace = true
7575
eyre.workspace = true
7676
colored.workspace = true
7777

78-
criterion = { version = "0.5", features = [
78+
criterion = { version = "0.5.1", features = [
7979
"async",
8080
"async_tokio",
8181
], optional = true }
@@ -94,9 +94,9 @@ serial_test.workspace = true
9494
tracing-subscriber.workspace = true
9595
reth-db.workspace = true
9696
tokio.workspace = true
97-
criterion = { version = "0.5" }
97+
criterion = { version = "0.5.1" }
9898
rand = "0.8.5"
99-
statrs = "0.16"
99+
statrs = "0.16.1"
100100

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

crates/eth-engine-libmdbx/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bitflags.workspace = true
1818
byteorder = "1"
1919
derive_more.workspace = true
2020
indexmap = "2"
21-
libc = "0.2"
21+
libc = "0.2.172"
2222
parking_lot.workspace = true
2323
thiserror.workspace = true
2424
dashmap = { workspace = true, features = ["inline"], optional = true }
@@ -27,7 +27,7 @@ ffi = { package = "reth-mdbx-sys", git = "https://github.com/paradigmxyz/reth",
2727

2828
[dev-dependencies]
2929
tempfile = "3.8"
30-
criterion = "0.5"
30+
criterion = "0.5.1"
3131
pprof = "0.13"
3232

3333
[target.'cfg(not(windows))'.dependencies]

crates/eth-engine-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ 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.5.4", optional = true }
5353

5454
[target.'cfg(target_os = "linux")'.dependencies]
5555
procfs = "0.16.0"

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.12.1"
2626
redefined.workspace = true
2727

2828
futures.workspace = true
@@ -65,7 +65,7 @@ alloy-sol-types.workspace = true
6565
alloy-sol-macro = { workspace = true, features = ["json"] }
6666
alloy-dyn-abi.workspace = true
6767
parking_lot.workspace = true
68-
petgraph = "0.6.4"
68+
petgraph = "0.6.5"
6969
derive_more.workspace = true
7070
async-trait.workspace = true
7171
num-bigfloat = "1.7.0"
@@ -79,7 +79,7 @@ bytes = "1.5"
7979
eyre.workspace = true
8080
rkyv.workspace = true
8181
dashmap.workspace = true
82-
criterion = { version = "0.5", features = [
82+
criterion = { version = "0.5.1", features = [
8383
"async",
8484
"async_tokio",
8585
], optional = true }

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.12.1"
2929
redefined.workspace = true
3030

3131
futures.workspace = true
@@ -66,7 +66,7 @@ alloy-sol-types.workspace = true
6666
alloy-sol-macro = { workspace = true, features = ["json"] }
6767
alloy-dyn-abi.workspace = true
6868
parking_lot.workspace = true
69-
petgraph = "0.6.4"
69+
petgraph = "0.6.5"
7070
derive_more.workspace = true
7171
async-trait.workspace = true
7272
num-bigfloat = "1.7.0"
@@ -78,7 +78,7 @@ modular-bitfield = "0.11.2"
7878
bytes = "1.5"
7979
rkyv.workspace = true
8080
dashmap.workspace = true
81-
criterion = { version = "0.5", features = ["async", "async_tokio"] }
81+
criterion = { version = "0.5.1", features = ["async", "async_tokio"] }
8282
dotenvy.workspace = true
8383
tokio.workspace = true
8484
rand = "0.8.5"

0 commit comments

Comments
 (0)