diff --git a/Cargo.lock b/Cargo.lock index a257aadf9..728bd9e5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1488,9 +1488,9 @@ checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" [[package]] name = "bytemuck" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" +checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5" dependencies = [ "bytemuck_derive", ] diff --git a/Cargo.toml b/Cargo.toml index 9ad34af7d..63985ad83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,11 +56,11 @@ sp1-helper = { git = "https://github.com/succinctlabs/sp1.git", branch = "main" # alloy alloy-rlp = { version = "0.3.4", default-features = false } alloy-rlp-derive = { version = "0.3.4", default-features = false } -alloy-core = { version = "0.7.1", default-features = false } -alloy-dyn-abi = { version = "0.7.1", default-features = false } -alloy-json-abi = { version = "0.7.1", default-features = false } -alloy-primitives = { version = "0.7.1", default-features = false } -alloy-sol-types = { version = "0.7.1", default-features = false } +alloy-core = { version = "0.7.2", default-features = false } +alloy-dyn-abi = { version = "0.7.2", default-features = false } +alloy-json-abi = { version = "0.7.2", default-features = false } +alloy-primitives = { version = "0.7.2", default-features = false } +alloy-sol-types = { version = "0.7.2", default-features = false } alloy-rpc-types = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e" } alloy-rpc-client = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e" } alloy-consensus = { git = "https://github.com/brechtpd/alloy", branch = "175_4e22b9e", features = [ diff --git a/host/src/lib.rs b/host/src/lib.rs index f1d061331..121489d4c 100644 --- a/host/src/lib.rs +++ b/host/src/lib.rs @@ -33,7 +33,7 @@ use serde_json::Value; use crate::{error::HostResult, request::ProofRequestOpt}; -type MerkleProof = HashMap
; +pub type MerkleProof = HashMap; #[global_allocator] static ALLOCATOR: Cap