Skip to content

Commit ae37e59

Browse files
authored
Upgrade Minors (#338)
1 parent 883eb34 commit ae37e59

File tree

13 files changed

+618
-680
lines changed

13 files changed

+618
-680
lines changed

Cargo.lock

Lines changed: 530 additions & 593 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ resolver = "2"
1313
rindexer = { path = "../core" }
1414

1515
# external dependencies
16-
alloy = { version = "1.0.37", features = ["full"] }
17-
alloy-chains = "0.2.14"# pegged to version in "foundry-block-explorers"
16+
alloy = { version = "1.0.41", features = ["full"] }
17+
alloy-chains = "0.2.15"# pegged to version in "foundry-block-explorers"
1818
foundry-block-explorers = "0.22.0"
19-
clap = { version = "4.5.48", features = ["derive"] }
20-
regex = "1.11.3"
19+
clap = { version = "4.5.50", features = ["derive"] }
20+
regex = "1.12.2"
2121
colored = "3.0.0"
22-
tokio = "1.47.1"
22+
tokio = "1.48.0"
2323
serde = { version = "1.0", features = ["derive"] }
2424
serde_json = "1.0.145"
2525

2626
# build
27-
jemallocator = { version = "0.6.0", package = "tikv-jemallocator", optional = true }
28-
jemalloc-ctl = { version = "0.6.0", package = "tikv-jemalloc-ctl", optional = true }
27+
jemallocator = { version = "0.6.1", package = "tikv-jemallocator", optional = true }
28+
jemalloc-ctl = { version = "0.6.1", package = "tikv-jemalloc-ctl", optional = true }
2929

3030
[profile.release]
3131
lto = "fat"

core/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,37 @@ tempfile = "3.23"
1616
mockito = "1.7.0"
1717

1818
[dependencies]
19-
# TODO: Trim down alloy features needed later, for now opt in to all.
20-
alloy = { version = "1.0.37", features = ["full", "json-rpc"] }
19+
# TODO: Trim down alloy features needed later, for now opt iun to all.
20+
alloy = { version = "1.0.41", features = ["full", "json-rpc"] }
2121
async-trait = "0.1.89"
22-
aws-config = "1.8.7"
23-
aws-sdk-sns = "1.86.0"
22+
aws-config = "1.8.8"
23+
aws-sdk-sns = "1.88.0"
2424
bb8 = "0.9.0"
2525
bb8-postgres = "0.9.0"
2626
bb8-redis = "0.24.0"
2727
bytes = "1.10.1"
2828
chrono = { version = "0.4", features = ["serde"] }
2929
colored = "3.0.0"
30+
csv = "1.4.0"
3031
clickhouse = { version = "0.13.3", features = ["rustls-tls"] }
31-
csv = "1.3.1"
3232
deadpool = { version = "0.12", features = ["rt_tokio_1"] }
3333
deadpool-lapin = "0.13"
3434
dotenv = "0.15.0"
3535
futures = "0.3.31"
3636
hex = "0.4.3"
37-
lapin = "3.7.0"
37+
lapin = "3.7.1"
3838
lazy_static = "1.5.0"
39-
lru = "0.16.1"
39+
lru = "0.16.2"
4040
native-tls = "0.2"
4141
once_cell = "1.21.3"
4242
postgres-native-tls = "0.5"
4343
rand = "0.9.2"
4444
# Redis version must match bb8-redis internal version. Can be removed in favor of just
4545
# bb8-redis once https://github.com/djc/bb8/pull/183 is merged.
4646
redis = { version = "0.32.7", features = ["streams"] }
47-
regex = "1.11.3"
48-
reqwest = { version = "0.12.23", features = ["json", "gzip"] }
49-
rust_decimal = { version = "1.38.0", features = ["db-tokio-postgres"] }
47+
regex = "1.12.2"
48+
reqwest = { version = "0.12.24", features = ["json", "gzip"] }
49+
rust_decimal = { version = "1.39.0", features = ["db-tokio-postgres"] }
5050
serde = "1.0"
5151
serde_json = "1.0"
5252
serde_yaml = "0.9.34"
@@ -72,7 +72,7 @@ mini-moka = "0.10.3"
7272
url = "2.5.7"
7373
uuid = "1"
7474
eyre = { version = "0.6.12" }
75-
cfg-if = "1.0.3"
75+
cfg-if = "1.0.4"
7676
zstd = "0.13.3"
7777
bincode = "2.0.1"
7878
anyhow = "1.0.100"
@@ -82,10 +82,10 @@ port-killer = "0.1.0"
8282
axum = "0.8"
8383

8484
# build
85-
jemallocator = { version = "0.6.0", package = "tikv-jemallocator", optional = true }
86-
jemalloc-ctl = { version = "0.6.0", package = "tikv-jemalloc-ctl", optional = true }
85+
jemallocator = { version = "0.6.1", package = "tikv-jemallocator", optional = true }
86+
jemalloc-ctl = { version = "0.6.1", package = "tikv-jemalloc-ctl", optional = true }
8787
foundry-compilers = "0.19.5"
88-
alloy-chains = "0.2.14"
88+
alloy-chains = "0.2.15"
8989

9090
# reth
9191
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.2", optional = true }

core/src/generator/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ edition = "2021"
498498
[dependencies]
499499
rindexer = {{ git = "https://github.com/joshstevens19/rindexer", branch = "master" {reth_dep}}}
500500
tokio = {{ version = "1", features = ["full"] }}
501-
alloy = {{ version = "1.0.37", features = ["full"] }}
501+
alloy = {{ version = "1.0.41", features = ["full"] }}
502502
serde = {{ version = "1.0", features = ["derive"] }}
503503
"#,
504504
project_name = manifest.name,

documentation/docs/pages/docs/changelog.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
### Bug fixes
1010
-------------------------------------------------
11-
fix: reorg safe range calculation for out-of-range an error message
11+
- fix: reorg safe range calculation for out-of-range an error message
12+
- fix: Upgrade dependecy minor versions to get latest alloy fixes
1213

1314
### Breaking changes
1415
-------------------------------------------------

documentation/docs/pages/docs/start-building/rust-project-deep-dive/ethers-alloy-migration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ this will the newer `alloy` crate. It should be pegged to the same version used
2222
Replace in `Cargo.toml`
2323
```diff
2424
- ethers = "2.0.14"
25-
+ alloy = { version = "1.0.37", features = ["full"] }
25+
+ alloy = { version = "1.0.41", features = ["full"] }
2626
```
2727

2828
Then any references to ethers types in your own code can be replaced with the alloy types. You can read more

examples/clickhouse_factory_indexing/Cargo.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/clickhouse_factory_indexing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ rindexer = { path = "../../core" }
99

1010
# external dependencies
1111
tokio = { version = "1", features = ["full"] }
12-
alloy = { version = "1.0.37", features = ["full"] }
13-
serde = { version = "1.0", features = ["derive"] }
12+
alloy = { version = "1.0.41", features = ["full"] }
13+
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)