Skip to content

Commit dfe9b96

Browse files
committed
build(deps): upgrade erc8004 from 0.3.4 to 0.4.0
- Update workspace dependency erc8004 from 0.3.4 to 0.4.0 - Rename `erc8004::Error` to `erc8004::Erc8004Error` in `error.rs` to match the upstream breaking change in erc8004 v0.4.0 BREAKING CHANGE: erc8004 v0.4.0 renames `Error` to `Erc8004Error`
1 parent 66b400b commit dfe9b96

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default-members = ["ensip25"]
44
resolver = "3"
55

66
[workspace.package]
7-
version = "0.4.0"
7+
version = "0.4.1"
88
edition = "2024"
99
license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/qntx/ensip25"
@@ -14,7 +14,7 @@ description = "Rust implementation of ENSIP-25: verify the link between ENS name
1414
alloy = { version = "1.8.3", features = ["full"] }
1515
alloy-ens = { version = "1.8.3", features = ["provider"] }
1616
alloy-primitives = "1.5.7"
17-
erc8004 = "0.3.4"
17+
erc8004 = "0.4.0"
1818
serde = { version = "1.0.228", features = ["derive"] }
1919
thiserror = "2.0.18"
2020

ensip25/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub enum Ensip25Error {
5959
/// An ERC-8004 SDK error.
6060
#[cfg(feature = "erc8004")]
6161
#[error("erc8004 error: {0}")]
62-
Erc8004(#[from] erc8004::Error),
62+
Erc8004(#[from] erc8004::Erc8004Error),
6363
}
6464

6565
/// A convenience type alias used throughout the SDK.

0 commit comments

Comments
 (0)