From 2ec5d9a9a30910ac8520f54455b569d5b695dcf3 Mon Sep 17 00:00:00 2001 From: Xuejie Xiao Date: Wed, 11 Jan 2023 07:08:59 +0000 Subject: [PATCH] Configure lazy_static to use no_std setup --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 85db660..e7a4055 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ subtle = { version = "2.3", default-features = false } blake2b_simd = { version = "1", optional = true, default-features = false } # sqrt-table dependencies -lazy_static = { version = "1.4.0", optional = true } +lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] } # gpu dependencies ec-gpu = { version = "0.2.0", optional = true }