From cdc6e4ef266199f0c2339512aafd498d35d017a1 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Fri, 31 May 2024 10:21:12 -0400 Subject: [PATCH] Bump BLST to 0.3.12 and remove patch --- Cargo.lock | 5 +++-- Cargo.toml | 7 +------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39f7b4ac5..fa6188ad3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,8 +224,9 @@ dependencies = [ [[package]] name = "blst" -version = "0.3.11" -source = "git+https://github.com/supranational/blst.git?rev=0d46eefa45fc1e57aceb42bba0e84eab3a7a9725#0d46eefa45fc1e57aceb42bba0e84eab3a7a9725" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62dc83a094a71d43eeadd254b1ec2d24cb6a0bb6cadce00df51f0db594711a32" dependencies = [ "cc", "glob", diff --git a/Cargo.toml b/Cargo.toml index ffde096c9..ef50b4c2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,11 +52,6 @@ clvm-utils = ["dep:clvm-utils"] [profile.release] lto = "thin" -# This is also necessary in `wheel/Cargo.toml` to make sure the `wheel` crate builds as well. -# Pin the `blst` dependency to the correct revision, since the fix has not been properly released yet. -[patch.crates-io] -blst = { git = "https://github.com/supranational/blst.git", rev = "0d46eefa45fc1e57aceb42bba0e84eab3a7a9725" } - [workspace.dependencies] chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version = "0.9.0" } chia_streamable_macro = { path = "./crates/chia_streamable_macro", version = "0.8.0" } @@ -71,7 +66,7 @@ clvm-traits = { path = "./crates/clvm-traits", version = "0.9.0" } clvm-utils = { path = "./crates/clvm-utils", version = "0.9.0" } clvm-derive = { path = "./crates/clvm-derive", version = "0.9.0" } chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.6.0" } -blst = { version = "0.3.11", git = "https://github.com/supranational/blst.git", rev = "0d46eefa45fc1e57aceb42bba0e84eab3a7a9725", features = ["portable"] } +blst = { version = "0.3.12", features = ["portable"] } clvmr = "0.7.0" syn = "2.0.27" quote = "1.0.32"