Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4b0a07

Browse files
committedJan 16, 2025
chore: updated deps in binary crate
1 parent 7d9219e commit f4b0a07

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed
 

‎bin/node/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ hilo-engine.workspace = true
2020
alloy-primitives.workspace = true
2121
alloy-rpc-types-engine = { workspace = true, features = ["jwt"] }
2222

23-
# op-alloy
24-
op-alloy-genesis.workspace = true
25-
op-alloy-registry.workspace = true
23+
# maili
24+
maili-genesis.workspace = true
25+
maili-registry.workspace = true
2626

2727
# Workspace
2828
url.workspace = true

‎bin/node/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ the [derivation pipeline][derivation] of the L2 payloads from L1 transactions.
1414
cargo run --bin node
1515
```
1616

17-
1817
<!-- Links -->
1918

20-
[hilo]: https://github.com/anton-rs/hilo
21-
[kona]: https://github.com/anton-rs/kona
19+
[hilo]: https://github.com/op-rs/hilo
20+
[kona]: https://github.com/op-rs/kona
2221
[reth]: https://github.com/paradigmxyz/reth
2322
[exex]: https://www.paradigm.xyz/2024/05/reth-exex
2423
[opstack]: https://docs.optimism.io/

‎bin/node/src/cli.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use tracing::debug;
99
use url::Url;
1010

1111
use alloy_rpc_types_engine::JwtSecret;
12-
use op_alloy_genesis::RollupConfig;
13-
use op_alloy_registry::ROLLUP_CONFIGS;
12+
use maili_genesis::RollupConfig;
13+
use maili_registry::ROLLUP_CONFIGS;
1414

1515
use hilo_engine::ValidationMode;
1616
use hilo_node::SyncMode;

‎bin/node/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/anton-rs/hilo/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/op-rs/hilo/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

0 commit comments

Comments
 (0)
This repository has been archived.