From a02e63e9524967efc670219eec4365f821819c4d Mon Sep 17 00:00:00 2001 From: Lorenzo Delgado Date: Fri, 8 Nov 2024 19:24:41 +0100 Subject: [PATCH] chore(deps): update rust crate alloy to v0.6 Signed-off-by: Lorenzo Delgado --- Cargo.toml | 2 +- tap_core/src/signed_message.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 595b759d..2363951a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol" [workspace.dependencies] -alloy = { version = "0.5.4", features = ["full"] } +alloy = { version = "0.6", features = ["full"] } serde = { version = "1.0.163", features = ["derive"] } rstest = "0.22.0" anyhow = { version = "1.0.89" } diff --git a/tap_core/src/signed_message.rs b/tap_core/src/signed_message.rs index 05094bf7..a0572d2e 100644 --- a/tap_core/src/signed_message.rs +++ b/tap_core/src/signed_message.rs @@ -27,8 +27,8 @@ use alloy::{ dyn_abi::Eip712Domain, - primitives::Address, - signers::{local::PrivateKeySigner, Signature, SignerSync}, + primitives::{Address, PrimitiveSignature as Signature}, + signers::{local::PrivateKeySigner, SignerSync}, sol_types::SolStruct, }; use serde::{Deserialize, Serialize};