Skip to content

Commit

Permalink
chore(deps): Replace dep alloy-rs/op-alloy-registry->`op-rs/maili-r…
Browse files Browse the repository at this point in the history
…egistry` (#892)
  • Loading branch information
emhane authored Jan 9, 2025
1 parent f142b0e commit 84645d3
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2

# Maili
maili-protocol = { version = "0.1.0", default-features = false }
maili-registry = { version = "0.1.0", default-features = false }

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

# OP Alloy
op-alloy-genesis = { version = "0.9.2", default-features = false }
op-alloy-registry = { version = "0.9.2", default-features = false }
op-alloy-consensus = { version = "0.9.2", default-features = false }
op-alloy-rpc-types-engine = { version = "0.9.2", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tracing-subscriber = { workspace = true, optional = true, features = ["fmt"] }
spin.workspace = true
proptest.workspace = true
serde_json.workspace = true
op-alloy-registry.workspace = true
maili-registry.workspace = true
tokio = { workspace = true, features = ["full"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }
tracing = { workspace = true, features = ["std"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/derive/src/stages/channel/channel_bank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,8 @@ mod tests {
let _guard = tracing::subscriber::set_default(subscriber);

let configs: [RollupConfig; 2] = [
op_alloy_registry::ROLLUP_CONFIGS.get(&10).cloned().unwrap(),
op_alloy_registry::ROLLUP_CONFIGS.get(&8453).cloned().unwrap(),
maili_registry::ROLLUP_CONFIGS.get(&10).cloned().unwrap(),
maili_registry::ROLLUP_CONFIGS.get(&8453).cloned().unwrap(),
];

for cfg in configs {
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/proof/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ kona-executor.workspace = true

# Maili
maili-protocol.workspace = true
maili-registry.workspace = true

# Alloy
alloy-rlp.workspace = true
Expand All @@ -29,7 +30,6 @@ alloy-consensus.workspace = true
alloy-primitives.workspace = true

# Op Alloy
op-alloy-registry.workspace = true
op-alloy-consensus.workspace = true
op-alloy-genesis = { workspace = true, features = ["serde"] }
op-alloy-rpc-types-engine = { workspace = true, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/proof/src/boot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
use crate::errors::OracleProviderError;
use alloy_primitives::{B256, U256};
use kona_preimage::{PreimageKey, PreimageOracleClient};
use maili_registry::ROLLUP_CONFIGS;
use op_alloy_genesis::RollupConfig;
use op_alloy_registry::ROLLUP_CONFIGS;
use serde::{Deserialize, Serialize};

/// The local key ident for the L1 head hash.
Expand Down

0 comments on commit 84645d3

Please sign in to comment.