Skip to content

Commit

Permalink
chore(deps): op-alloy 0.6.7 (#824)
Browse files Browse the repository at this point in the history
* chore: update op-alloy deps

* update cargo lock
  • Loading branch information
refcell authored Nov 19, 2024
1 parent 138a8f2 commit 9599fb8
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 25 deletions.
47 changes: 24 additions & 23 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ default-members = ["bin/host", "bin/client"]
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"

[patch.crates-io]
op-alloy-genesis = { git = "https://github.com/alloy-rs/op-alloy", branch = "main" }
op-alloy-protocol = { git = "https://github.com/alloy-rs/op-alloy", branch = "main" }
op-alloy-consensus = { git = "https://github.com/alloy-rs/op-alloy", branch = "main" }
op-alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/op-alloy", branch = "main" }

[workspace.lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/src/errors/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use crate::errors::BuilderError;
use alloc::string::String;
use alloy_primitives::B256;
use op_alloy_genesis::system::SystemConfigUpdateError;
use op_alloy_genesis::SystemConfigUpdateError;
use op_alloy_protocol::{DepositError, SpanBatchError};
use thiserror::Error;

Expand Down
2 changes: 1 addition & 1 deletion crates/derive/src/stages/l1_traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub(crate) mod tests {
use alloc::vec;
use alloy_consensus::Receipt;
use alloy_primitives::{address, b256, hex, Bytes, Log, LogData, B256};
use op_alloy_genesis::system::{CONFIG_UPDATE_EVENT_VERSION_0, CONFIG_UPDATE_TOPIC};
use op_alloy_genesis::{CONFIG_UPDATE_EVENT_VERSION_0, CONFIG_UPDATE_TOPIC};

const L1_SYS_CONFIG_ADDR: Address = address!("1337000000000000000000000000000000000000");

Expand Down

0 comments on commit 9599fb8

Please sign in to comment.