Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ alloy = { version = "=1.0.11", features = [
"arbitrary",
] }
alloy-contract = { version = "=1.0.11", features = ["pubsub"] }
alloy-trie = { version = "=0.8.1" }
alloy-genesis = { version = "=1.0.11" }
alloy-consensus = { version = "=1.0.11" }

# Reth
reth = { git = "https://github.com/paradigmxyz/reth", tag = "v1.4.3" }
Expand Down
4 changes: 4 additions & 0 deletions crates/constants/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ repository.workspace = true

[dependencies]
alloy.workspace = true
alloy-trie.workspace = true
alloy-genesis.workspace = true
alloy-consensus.workspace = true

serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand Down
4 changes: 4 additions & 0 deletions crates/constants/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ pub use chains::pecorino;
#[cfg(any(test, feature = "test-utils"))]
pub use chains::test_utils;

use alloy_consensus as _;
use alloy_genesis as _;
use alloy_trie as _;

mod types;
pub use types::{
ConfigError, HostConstants, KnownChains, PairedHeights, ParseChainError, PermissionedToken,
Expand Down
4 changes: 2 additions & 2 deletions crates/sim/src/item.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ pub enum SimIdentifier<'a> {
impl core::fmt::Display for SimIdentifier<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Bundle(id) => write!(f, "{}", id),
Self::Tx(id) => write!(f, "{}", id),
Self::Bundle(id) => write!(f, "{id}"),
Self::Tx(id) => write!(f, "{id}"),
}
}
}
Expand Down