Skip to content

Commit 8da1e11

Browse files
chore(deps): update rust crate alloy-sol-types to v0.8.15 (#524)
* chore(deps): update rust crate alloy-sol-types to v0.8.15 * chore: add allow deprecated Signed-off-by: Gustavo Inacio <[email protected]> --------- Signed-off-by: Gustavo Inacio <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gustavo Inacio <[email protected]>
1 parent 6b5bb25 commit 8da1e11

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dips/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77
alloy.workspace = true
88
thiserror.workspace = true
99
anyhow.workspace = true
10-
alloy-sol-types = "=0.8.13"
10+
alloy-sol-types = "=0.8.15"
1111
alloy-rlp = "0.3.9"
1212
thegraph-core.workspace = true

crates/dips/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub use alloy_rlp;
99

1010
use alloy::core::primitives::Address;
1111
use alloy::rlp::{RlpDecodable, RlpEncodable};
12-
use alloy::signers::{Signature, SignerSync};
12+
use alloy::{primitives::PrimitiveSignature as Signature, signers::SignerSync};
1313
use alloy_rlp::Encodable;
1414
use thegraph_core::alloy_sol_types::{sol, Eip712Domain, SolStruct};
1515
use thiserror::Error;

crates/tap-agent/src/tap/context/rav.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
use std::str::FromStr;
55

66
use super::{error::AdapterError, TapAgentContext};
7+
#[allow(deprecated)]
78
use alloy::signers::Signature;
89
use alloy::{hex::ToHexExt, primitives::Address};
910
use bigdecimal::num_bigint::{BigInt, ToBigInt};
@@ -36,6 +37,7 @@ impl RAVRead for TapAgentContext {
3637

3738
match row {
3839
Some(row) => {
40+
#[allow(deprecated)]
3941
let signature: Signature =
4042
row.signature
4143
.as_slice()

0 commit comments

Comments
 (0)