From 89ac78edeb0cc1410398eb94bd2398078b70e37d Mon Sep 17 00:00:00 2001 From: Bhargav Annem Date: Fri, 23 Aug 2024 10:07:43 -0700 Subject: [PATCH] fix: enable `race` and `alloc` for `once_cell` --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 188ab20..649c083 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,10 @@ serde = { version = "1.0", optional = true, default-features = false, features = glob = "0.3.1" hex = { version = "0.4.3", default-features = false, features = ["alloc"] } serde_yaml = { version = "0.9", optional = true } -once_cell = { version = "1.19.0", default-features = false } +once_cell = { version = "1.19.0", default-features = false, features = [ + "race", + "alloc", +] } bls12_381 = "0.8.0" [features]