From 370895e7be170b3d73b0d61848c88a12d6ea36f1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 9 Nov 2024 12:45:21 +0100 Subject: [PATCH] `nodeinfo`: Add `serialize` feature to `quick-xml` --- acrate-nodeinfo/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acrate-nodeinfo/Cargo.toml b/acrate-nodeinfo/Cargo.toml index 4936bb9..015de24 100644 --- a/acrate-nodeinfo/Cargo.toml +++ b/acrate-nodeinfo/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] log = "0.4.22" -quick-xml = "0.37.0" +quick-xml = { version = "0.37.0", features = ["serialize"] } reqwest = { version = "0.12.9", features = ["json", "stream"] } serde = { version = "1.0.214", features = ["derive"] } serde_json = "1.0.132"