diff --git a/Cargo.toml b/Cargo.toml index 7c22e13..6070c6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,9 @@ resolver = "2" [workspace.dependencies] alloy-chains = "0.1" alloy-primitives = { version = "0.7", default-features = false, features = ["std", "serde"] } +alloy-rpc-types-eth = "0.1" +alloy-eips = "0.1" +alloy-serde = "0.1" reqwest = { version = "0.12", default-features = false, features = ["json"] } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/blob-explorers/Cargo.toml b/crates/blob-explorers/Cargo.toml index 8a186e7..b304572 100644 --- a/crates/blob-explorers/Cargo.toml +++ b/crates/blob-explorers/Cargo.toml @@ -12,9 +12,9 @@ readme = "README.md" alloy-chains.workspace = true alloy-primitives = { workspace = true, default-features = false, features = ["std", "serde"] } -alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy" } -alloy-serde = { git = "https://github.com/alloy-rs/alloy" } -alloy-eips = { git = "https://github.com/alloy-rs/alloy" } +alloy-rpc-types-eth.workspace = true +alloy-serde.workspace = true +alloy-eips.workspace = true reqwest = { workspace = true, features = ["json"] } serde = { workspace = true, features = ["derive"] } diff --git a/crates/blob-explorers/src/lib.rs b/crates/blob-explorers/src/lib.rs index 290a4a6..4dc3fd6 100644 --- a/crates/blob-explorers/src/lib.rs +++ b/crates/blob-explorers/src/lib.rs @@ -12,7 +12,7 @@ use alloy_chains::{Chain, ChainKind, NamedChain}; use alloy_primitives::B256; -use alloy_rpc_types::BlockHashOrNumber; +use alloy_rpc_types_eth::BlockHashOrNumber; pub use request::*; pub use response::*; use serde::de::DeserializeOwned; diff --git a/crates/blob-explorers/src/response.rs b/crates/blob-explorers/src/response.rs index 544e22d..5cabdae 100644 --- a/crates/blob-explorers/src/response.rs +++ b/crates/blob-explorers/src/response.rs @@ -3,7 +3,7 @@ use alloy_eips::eip4844::Blob; use alloy_primitives::{Address, FixedBytes, B256}; -use alloy_rpc_types::BlobTransactionSidecar; +use alloy_rpc_types_eth::BlobTransactionSidecar; use serde::{Deserialize, Serialize}; use std::str::FromStr;