From e4ed42a9d88b044c0efd7aa9cf2180a54abe0f25 Mon Sep 17 00:00:00 2001 From: Squirrel Date: Sun, 12 Sep 2021 23:55:20 +0000 Subject: [PATCH] Fix nightly bump num bigint (#2591) ## Issue Addressed Builds again on latest nightly ## Proposed Changes Break was caused by: https://github.com/rust-lang/rust/issues/88581 --- Cargo.lock | 4 ++-- common/eth2_interop_keypairs/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74665ebd271..733b5a8e18f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4236,9 +4236,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.3.2" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d0a3d5e207573f948a9e5376662aa743a2ea13f7c50a554d7af443a73fbfeba" +checksum = "74e768dff5fb39a41b3bcd30bb25cf989706c90d028d1ad71971987aa309d535" dependencies = [ "autocfg 1.0.1", "num-integer", diff --git a/common/eth2_interop_keypairs/Cargo.toml b/common/eth2_interop_keypairs/Cargo.toml index c23fe52feaf..cf8f889cf4f 100644 --- a/common/eth2_interop_keypairs/Cargo.toml +++ b/common/eth2_interop_keypairs/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] lazy_static = "1.4.0" -num-bigint = "0.3.0" +num-bigint = "0.4.2" eth2_hashing = "0.2.0" hex = "0.4.2" serde_yaml = "0.8.13"