From 293a3979de7ab42a13f7f786c19947b1232b7022 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:34:37 +0000 Subject: [PATCH] build(deps): Update ethers requirement from =2.0.11 to =2.0.13 Updates the requirements on [ethers](https://github.com/gakonst/ethers-rs) to permit the latest version. - [Release notes](https://github.com/gakonst/ethers-rs/releases) - [Changelog](https://github.com/gakonst/ethers-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/gakonst/ethers-rs/compare/ethers-v2.0.11...ethers-v2.0.11) --- updated-dependencies: - dependency-name: ethers dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/avalanche-types/Cargo.toml | 2 +- tests/avalanche-e2e/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/avalanche-types/Cargo.toml b/crates/avalanche-types/Cargo.toml index 2b7ddd5..a4bb8d4 100644 --- a/crates/avalanche-types/Cargo.toml +++ b/crates/avalanche-types/Cargo.toml @@ -71,7 +71,7 @@ tokio = { version = "1.32.0", features = ["full"], optional = true } # https://g rlp = { version = "0.5.2", default-features = false, features = ["std"], optional = true } # [OPTIONAL] for "wallet_evm" -ethers = { version = "=2.0.11", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases +ethers = { version = "=2.0.13", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases ethers-providers = { version = "=2.0.13", optional = true } # https://github.com/gakonst/ethers-rs/releases ethers-signers = { version = "=2.0.11", optional = true } # https://github.com/gakonst/ethers-rs/releases diff --git a/tests/avalanche-e2e/Cargo.toml b/tests/avalanche-e2e/Cargo.toml index e7b05cc..9deca38 100644 --- a/tests/avalanche-e2e/Cargo.toml +++ b/tests/avalanche-e2e/Cargo.toml @@ -17,7 +17,7 @@ clap = { version = "4.3.19", features = ["cargo", "derive"] } # https://github.c crossterm = "0.27.0" dialoguer = "0.11.0" env_logger = "0.11.1" -ethers = { version = "=2.0.11" } # https://github.com/gakonst/ethers-rs/releases +ethers = { version = "=2.0.13" } # https://github.com/gakonst/ethers-rs/releases ethers-core = { version = "=2.0.13", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases ethers-signers = { version = "=2.0.11" } # https://github.com/gakonst/ethers-rs/releases log = "0.4.20"