From e06d040b5dc7741f3c548cc5b2ae570fa592481c Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 3 Dec 2020 22:07:16 +0000 Subject: [PATCH] Update blst to 0.3.2 (#2034) ## Issue Addressed Should resolve `blst` build issues that previously required `cargo clean` :crossed_fingers: ## Proposed Changes BLST cleaned up some of their validation logic: https://github.com/supranational/blst/compare/v0.3.1...v0.3.2 And included my build system PR: https://github.com/supranational/blst/pull/45 --- Cargo.lock | 4 ++-- crypto/bls/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 94d59a9cbec..d0b63d9028e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -830,9 +830,9 @@ dependencies = [ [[package]] name = "blst" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbf4f6a3ffa04c41ed616749b40dd83431b69db520a18cb60f09db2b7a77c57" +checksum = "b1f4904512207f2ac5208e5f679106c9e3aa45e4aca9774beda779eab5f522cb" dependencies = [ "cc", "glob", diff --git a/crypto/bls/Cargo.toml b/crypto/bls/Cargo.toml index ce211f893a6..422bb20c370 100644 --- a/crypto/bls/Cargo.toml +++ b/crypto/bls/Cargo.toml @@ -17,7 +17,7 @@ eth2_hashing = "0.1.0" ethereum-types = "0.9.2" arbitrary = { version = "0.4.6", features = ["derive"], optional = true } zeroize = { version = "1.1.1", features = ["zeroize_derive"] } -blst = "0.3.1" +blst = "0.3.2" [features] default = ["supranational"]