From c49a500255c58091d44781a0666755ff2763ac9a Mon Sep 17 00:00:00 2001 From: Georgy Shepelev Date: Thu, 15 Feb 2024 16:07:11 +0400 Subject: [PATCH] disable default features of serde_json --- plonky2/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 4cc44cccd3..369d65a16e 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -31,7 +31,7 @@ plonky2_util = { path = "../util", default-features = false } rand = { version = "0.8.4", default-features = false } rand_chacha = { version = "0.3.1", optional = true, default-features = false } serde = { version = "1.0", default-features = false, features = ["derive", "rc"] } -serde_json = "1.0" +serde_json = { version = "1.0", default-features = false, features = ["alloc"] } static_assertions = { version = "1.1.0", default-features = false } unroll = { version = "0.1.5", default-features = false } web-time = { version = "1.0.0", optional = true }