Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 84645d3

Browse files
authored
chore(deps): Replace dep alloy-rs/op-alloy-registry->op-rs/maili-registry (#892)
1 parent f142b0e commit 84645d3

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2
7474

7575
# Maili
7676
maili-protocol = { version = "0.1.0", default-features = false }
77+
maili-registry = { version = "0.1.0", default-features = false }
7778

7879
# Alloy
7980
alloy-rlp = { version = "0.3.10", default-features = false }
@@ -93,7 +94,6 @@ alloy-rpc-types-beacon = { version = "0.9.2", default-features = false }
9394

9495
# OP Alloy
9596
op-alloy-genesis = { version = "0.9.2", default-features = false }
96-
op-alloy-registry = { version = "0.9.2", default-features = false }
9797
op-alloy-consensus = { version = "0.9.2", default-features = false }
9898
op-alloy-rpc-types-engine = { version = "0.9.2", default-features = false }
9999

crates/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tracing-subscriber = { workspace = true, optional = true, features = ["fmt"] }
4040
spin.workspace = true
4141
proptest.workspace = true
4242
serde_json.workspace = true
43-
op-alloy-registry.workspace = true
43+
maili-registry.workspace = true
4444
tokio = { workspace = true, features = ["full"] }
4545
tracing-subscriber = { workspace = true, features = ["fmt"] }
4646
tracing = { workspace = true, features = ["std"] }

crates/derive/src/stages/channel/channel_bank.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ mod tests {
508508
let _guard = tracing::subscriber::set_default(subscriber);
509509

510510
let configs: [RollupConfig; 2] = [
511-
op_alloy_registry::ROLLUP_CONFIGS.get(&10).cloned().unwrap(),
512-
op_alloy_registry::ROLLUP_CONFIGS.get(&8453).cloned().unwrap(),
511+
maili_registry::ROLLUP_CONFIGS.get(&10).cloned().unwrap(),
512+
maili_registry::ROLLUP_CONFIGS.get(&8453).cloned().unwrap(),
513513
];
514514

515515
for cfg in configs {

crates/proof-sdk/proof/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ kona-executor.workspace = true
2121

2222
# Maili
2323
maili-protocol.workspace = true
24+
maili-registry.workspace = true
2425

2526
# Alloy
2627
alloy-rlp.workspace = true
@@ -29,7 +30,6 @@ alloy-consensus.workspace = true
2930
alloy-primitives.workspace = true
3031

3132
# Op Alloy
32-
op-alloy-registry.workspace = true
3333
op-alloy-consensus.workspace = true
3434
op-alloy-genesis = { workspace = true, features = ["serde"] }
3535
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }

crates/proof-sdk/proof/src/boot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
use crate::errors::OracleProviderError;
55
use alloy_primitives::{B256, U256};
66
use kona_preimage::{PreimageKey, PreimageOracleClient};
7+
use maili_registry::ROLLUP_CONFIGS;
78
use op_alloy_genesis::RollupConfig;
8-
use op_alloy_registry::ROLLUP_CONFIGS;
99
use serde::{Deserialize, Serialize};
1010

1111
/// The local key ident for the L1 head hash.

0 commit comments

Comments
 (0)