Skip to content

Commit

Permalink
fix(workspace): Use published revm version (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby authored Aug 24, 2024
1 parent d37a79c commit 0048fcc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
12 changes: 8 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ lru = "0.12.3"
async-trait = "0.1.80"

# Ethereum
alloy-primitives = { version = "0.7.6", default-features = false }
alloy-primitives = { version = "0.7.7", default-features = false }
alloy-rlp = { version = "0.3.5", default-features = false }
alloy-consensus = { version = "0.2", default-features = false }
op-alloy-consensus = { version = "0.1.4", default-features = false }
alloy-eips = { version = "0.2", default-features = false }
revm = { git = "https://github.com/bluealloy/revm", version = "13.0", default-features = false }
revm = { version = "13.0", default-features = false }

[profile.dev]
opt-level = 1
Expand Down
2 changes: 1 addition & 1 deletion crates/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ revm = { workspace = true, features = ["optimism"] }

# local
kona-mpt = { path = "../mpt", version = "0.0.2" }
kona-primitives = { path = "../primitives", version = "0.0.1", default-feature = false }
kona-primitives = { path = "../primitives", version = "0.0.1", default-features = false }

[dev-dependencies]
alloy-rlp.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/src/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use alloc::vec::Vec;
use alloy_consensus::{Header, TxEnvelope};
use alloy_eips::eip4895::Withdrawal;
use alloy_primitives::B256;

use alloy_rlp::{RlpDecodable, RlpEncodable};
use op_alloy_consensus::OpTxEnvelope;

#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};

Expand Down

0 comments on commit 0048fcc

Please sign in to comment.