From 5d247b5658c1107d574c661f4dc42aa715b82dad Mon Sep 17 00:00:00 2001 From: Mario Rugiero Date: Wed, 20 Dec 2023 09:43:17 -0300 Subject: [PATCH] fix: std requires alloc --- crates/starknet-types-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/starknet-types-core/Cargo.toml b/crates/starknet-types-core/Cargo.toml index 1b61b80..498538e 100644 --- a/crates/starknet-types-core/Cargo.toml +++ b/crates/starknet-types-core/Cargo.toml @@ -26,7 +26,7 @@ num-integer = {version = "0.1.45", default-features = false} default = ["std", "serde", "curve"] curve = [] hash = ["dep:lambdaworks-crypto"] -std = [] +std = ["alloc"] alloc = ["serde?/alloc"] arbitrary = ["std", "dep:arbitrary"]