Skip to content

Commit

Permalink
chore(deps): update rust crate alloy-sol-types to v0.8.15 (#524)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
renovate[bot] and gusinacio authored Dec 18, 2024
1 parent 6b5bb25 commit 8da1e11
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/dips/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
alloy.workspace = true
thiserror.workspace = true
anyhow.workspace = true
alloy-sol-types = "=0.8.13"
alloy-sol-types = "=0.8.15"
alloy-rlp = "0.3.9"
thegraph-core.workspace = true
2 changes: 1 addition & 1 deletion crates/dips/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub use alloy_rlp;

use alloy::core::primitives::Address;
use alloy::rlp::{RlpDecodable, RlpEncodable};
use alloy::signers::{Signature, SignerSync};
use alloy::{primitives::PrimitiveSignature as Signature, signers::SignerSync};
use alloy_rlp::Encodable;
use thegraph_core::alloy_sol_types::{sol, Eip712Domain, SolStruct};
use thiserror::Error;
Expand Down
2 changes: 2 additions & 0 deletions crates/tap-agent/src/tap/context/rav.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
use std::str::FromStr;

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

match row {
Some(row) => {
#[allow(deprecated)]
let signature: Signature =
row.signature
.as_slice()
Expand Down

0 comments on commit 8da1e11

Please sign in to comment.