From 21df0bfa890c5e58ea570ce5eec73bf277b5a5d1 Mon Sep 17 00:00:00 2001 From: arvidn Date: Fri, 8 May 2026 11:38:25 +0200 Subject: [PATCH] Don't build BLST in portable mode, in an attempt to improve performance --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1faf79e81..45d017053 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -142,7 +142,7 @@ chia-protocol-fuzz = { path = "./crates/chia-protocol/fuzz", version = "0.42.0" chia-puzzle-types-fuzz = { path = "./crates/chia-puzzle-types/fuzz", version = "0.42.0" } clvm-traits-fuzz = { path = "./crates/clvm-traits/fuzz", version = "0.42.0" } clvm-utils-fuzz = { path = "./crates/clvm-utils/fuzz", version = "0.42.0" } -blst = { version = "0.3.16", features = ["portable"] } +blst = "0.3.16" clvmr = "0.17.7" clvm-fuzzing = "0.17.0" syn = "2.0.101"