Skip to content

Commit

Permalink
chore(deps): weekly cargo update (#9715)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 19, 2025
1 parent 18cb6f9 commit a038646
Show file tree
Hide file tree
Showing 8 changed files with 293 additions and 209 deletions.
488 changes: 286 additions & 202 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ alloy-trie = "0.7.0"

## op-alloy
op-alloy-rpc-types = "0.9.0"
op-alloy-consensus = "0.9.0"
maili-consensus = "0.1.6"

## cli
anstream = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ alloy-transport.workspace = true
alloy-chains.workspace = true
alloy-genesis.workspace = true
alloy-trie.workspace = true
op-alloy-consensus = { workspace = true, features = ["serde"] }
maili-consensus = { workspace = true, features = ["serde"] }

# axum related
axum.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ alloy-eips.workspace = true
alloy-consensus = { workspace = true, features = ["k256", "kzg"] }
alloy-dyn-abi = { workspace = true, features = ["std", "eip712"] }
alloy-trie.workspace = true
op-alloy-consensus = { workspace = true, features = ["serde"] }
maili-consensus = { workspace = true, features = ["serde"] }
alloy-network.workspace = true
serde = { workspace = true, optional = true }
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/core/src/eth/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use alloy_rpc_types::{
use alloy_serde::{OtherFields, WithOtherFields};
use bytes::BufMut;
use foundry_evm::traces::CallTraceNode;
use op_alloy_consensus::{TxDeposit, DEPOSIT_TX_TYPE_ID};
use maili_consensus::{TxDeposit, DEPOSIT_TX_TYPE_ID};
use revm::{
interpreter::InstructionResult,
primitives::{OptimismFields, TxEnv},
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/core/src/eth/transaction/optimism.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use alloy_primitives::{Address, Bytes, TxKind, B256, U256};
use alloy_rlp::{Decodable, Encodable, Error as DecodeError, Header as RlpHeader};
use op_alloy_consensus::TxDeposit;
use maili_consensus::TxDeposit;
use serde::{Deserialize, Serialize};

pub const DEPOSIT_TX_TYPE_ID: u8 = 0x7E;
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/src/eth/backend/mem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ use foundry_evm::{
traces::TracingInspectorConfig,
};
use futures::channel::mpsc::{unbounded, UnboundedSender};
use op_alloy_consensus::{TxDeposit, DEPOSIT_TX_TYPE_ID};
use maili_consensus::{TxDeposit, DEPOSIT_TX_TYPE_ID};
use parking_lot::{Mutex, RwLock};
use revm::{
db::WrapDatabaseRef,
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/src/eth/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use alloy_signer_local::PrivateKeySigner;
use anvil_core::eth::transaction::{
optimism::DepositTransaction, TypedTransaction, TypedTransactionRequest,
};
use op_alloy_consensus::TxDeposit;
use maili_consensus::TxDeposit;

/// A transaction signer
#[async_trait::async_trait]
Expand Down

0 comments on commit a038646

Please sign in to comment.