From 2ee2e9f3263d566bac2aa702c2e15b532167eec4 Mon Sep 17 00:00:00 2001 From: xavo95 Date: Tue, 24 Sep 2024 21:16:54 +0200 Subject: [PATCH] Changes for duimper --- shorekeeper-protocol/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shorekeeper-protocol/build.rs b/shorekeeper-protocol/build.rs index f423e99..20ee304 100644 --- a/shorekeeper-protocol/build.rs +++ b/shorekeeper-protocol/build.rs @@ -151,7 +151,7 @@ pub fn impl_dumper(codegen_path: &Path) -> io::Result<()> { ); match_arms = quote! { #match_arms - #id => serde_json::to_string(&#name::decode(data).unwrap()), + #id => serde_json::to_string_pretty(&#name::decode(data).unwrap()), }; } }