From abfad24d1e8659cc62c4526a7bebe6ff8e97e286 Mon Sep 17 00:00:00 2001 From: Richard Pringle Date: Wed, 29 Nov 2023 12:28:51 -0500 Subject: [PATCH] Update ethers-* dependencies (#103) --- crates/avalanche-types/Cargo.toml | 10 +++++----- tests/avalanche-e2e/Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/avalanche-types/Cargo.toml b/crates/avalanche-types/Cargo.toml index 3c370cc..ab78de2 100644 --- a/crates/avalanche-types/Cargo.toml +++ b/crates/avalanche-types/Cargo.toml @@ -20,7 +20,7 @@ cert-manager = "0.0.11" # https://github.com/gyuho/cert-manager chrono = "0.4.26" cmp-manager = "0.0.1" ecdsa = { version = "0.16.7", features = ["rfc6979", "verifying"] } # https://github.com/RustCrypto/elliptic-curves/tree/master/k256 -ethers-core = { version = "=2.0.7", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases +ethers-core = { version = "=2.0.11", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases hex = "0.4.3" hmac = "0.12.1" hyper = { version = "0.14.26"} @@ -40,7 +40,7 @@ serde_yaml = "0.9.25" # https://github.com/dtolnay/serde-yaml/releases sha2 = "0.10.6" sha3 = "0.10.8" # https://github.com/RustCrypto/hashes spki = "0.7.2" # https://github.com/RustCrypto/formats/tree/master/spki -strum = "0.24.1" +strum = "0.25.0" thiserror = "1.0.47" url = "2.4.0" # for "codec::serde::ip_port", "utils" zerocopy = { version = "0.7.11", features = ["derive"] } @@ -68,9 +68,9 @@ 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.7", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases -ethers-providers = { version = "=2.0.7", optional = true } # https://github.com/gakonst/ethers-rs/releases -ethers-signers = { version = "=2.0.7", optional = true } # https://github.com/gakonst/ethers-rs/releases +ethers = { version = "=2.0.11", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases +ethers-providers = { version = "=2.0.11", optional = true } # https://github.com/gakonst/ethers-rs/releases +ethers-signers = { version = "=2.0.11", optional = true } # https://github.com/gakonst/ethers-rs/releases # [OPTIONAL] for "subnet" futures = { version = "0.3.28", optional = true } diff --git a/tests/avalanche-e2e/Cargo.toml b/tests/avalanche-e2e/Cargo.toml index c9e1717..337b919 100644 --- a/tests/avalanche-e2e/Cargo.toml +++ b/tests/avalanche-e2e/Cargo.toml @@ -17,9 +17,9 @@ clap = { version = "4.3.19", features = ["cargo", "derive"] } # https://github.c crossterm = "0.27.0" dialoguer = "0.11.0" env_logger = "0.10.0" -ethers = { version = "=2.0.7" } # https://github.com/gakonst/ethers-rs/releases -ethers-core = { version = "=2.0.7", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases -ethers-signers = { version = "=2.0.7" } # https://github.com/gakonst/ethers-rs/releases +ethers = { version = "=2.0.11" } # https://github.com/gakonst/ethers-rs/releases +ethers-core = { version = "=2.0.11", 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" primitive-types = { version = "0.12.1", features = ["impl-serde"] } # https://crates.io/crates/primitive-types prometheus-manager = "0.0.30"