Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit e1567c9

Browse files
authored
Merge pull request #118 from anton-rs/rf/rm-registry
chore: rm hilo-registry
2 parents 4571702 + fd26944 commit e1567c9

File tree

21 files changed

+76
-3527
lines changed

21 files changed

+76
-3527
lines changed

.github/workflows/no_std.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,14 @@ rustdoc-args = ["--cfg", "docsrs"]
3838

3939
[patch.crates-io]
4040
# Kona alloy dep updates - sepolia holocene release can replace this patch
41-
kona-derive = { git = "https://github.com/anton-rs/kona", branch = "rf/chore/alloy-updates" }
42-
kona-driver = { git = "https://github.com/anton-rs/kona", branch = "rf/chore/alloy-updates" }
41+
kona-derive = { git = "https://github.com/anton-rs/kona", branch = "rf/test/op-alloy-registry" }
42+
kona-driver = { git = "https://github.com/anton-rs/kona", branch = "rf/test/op-alloy-registry" }
4343

4444
[workspace.dependencies]
4545
# Workspace
4646
hilo = { version = "0.11.0", path = "crates/hilo", default-features = false }
4747
hilo-net = { version = "0.11.0", path = "crates/net", default-features = false }
4848
hilo-driver = { version = "0.11.0", path = "crates/driver", default-features = false }
49-
hilo-registry = { version = "0.11.0", path = "crates/registry", default-features = false }
5049

5150
# Kona
5251
kona-derive = { version = "0.0.6", default-features = false }
@@ -69,10 +68,18 @@ alloy-rpc-types-beacon = { version = "0.6.4", default-features = false }
6968
alloy-rpc-types-engine = { version = "0.6.4", default-features = false }
7069

7170
# OP Alloy
72-
op-alloy-genesis = { version = "0.6.7", default-features = false }
73-
op-alloy-protocol = { version = "0.6.7", default-features = false }
74-
op-alloy-consensus = { version = "0.6.7", default-features = false }
75-
op-alloy-rpc-types-engine = { version = "0.6.7", default-features = false }
71+
# op-alloy-genesis = { version = "0.6.7", default-features = false }
72+
# op-alloy-protocol = { version = "0.6.7", default-features = false }
73+
# op-alloy-registry = { version = "0.6.7", default-features = false }
74+
# op-alloy-consensus = { version = "0.6.7", default-features = false }
75+
# op-alloy-rpc-types-engine = { version = "0.6.7", default-features = false }
76+
77+
op-alloy-genesis = { git = "https://github.com/alloy-rs/op-alloy", branch = "rf/chore/rm-hardcoded-configs", default-features = false }
78+
op-alloy-protocol = { git = "https://github.com/alloy-rs/op-alloy", branch = "rf/chore/rm-hardcoded-configs", default-features = false }
79+
op-alloy-registry = { git = "https://github.com/alloy-rs/op-alloy", branch = "rf/chore/rm-hardcoded-configs", default-features = false }
80+
op-alloy-consensus = { git = "https://github.com/alloy-rs/op-alloy", branch = "rf/chore/rm-hardcoded-configs", default-features = false }
81+
op-alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/op-alloy", branch = "rf/chore/rm-hardcoded-configs", default-features = false }
82+
7683

7784
# Reth
7885
reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "7ae8ce1" }

bin/net/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ rust-version.workspace = true
1414
[dependencies]
1515
# Local
1616
hilo-net.workspace = true
17-
hilo = { workspace = true, features = ["registry"] }
17+
18+
# op-alloy
19+
op-alloy-registry.workspace = true
1820

1921
# Workspace
2022
eyre.workspace = true

bin/net/src/gossip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
use crate::globals::GlobalArgs;
44
use clap::Args;
55
use eyre::Result;
6-
use hilo::registry::ROLLUP_CONFIGS;
76
use hilo_net::driver::NetworkDriver;
7+
use op_alloy_registry::ROLLUP_CONFIGS;
88
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
99

1010
/// The Hera gossip subcommand.

0 commit comments

Comments
 (0)