From 5c57ee4c63ece0acac15111df2010707939098fe Mon Sep 17 00:00:00 2001 From: Luis Schwab Date: Sat, 31 Jan 2026 17:10:52 -0300 Subject: [PATCH] chore: use the `alloc` feature on `serde_json` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d2a82e1..928c7d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ path = "src/lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } -serde_json = { version = "1.0", default-features = false } +serde_json = { version = "1.0", features = ["alloc"], default-features = false } bitcoin = { version = "0.32", features = ["serde", "std"], default-features = false } hex = { version = "0.2", package = "hex-conservative" } log = "^0.4"