Skip to content

Commit

Permalink
rust-webpki: pretty-print results
Browse files Browse the repository at this point in the history
We're not trying to save space.

Signed-off-by: William Woodruff <[email protected]>
  • Loading branch information
woodruffw committed Nov 7, 2023
1 parent 21dc763 commit 304bf42
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion harness/rust-webpki/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ fn main() {
results,
};

std::fs::write(LIMBO_RESULTS_OUT, serde_json::to_string(&result).unwrap()).unwrap()
std::fs::write(
LIMBO_RESULTS_OUT,
serde_json::to_string_pretty(&result).unwrap(),
)
.unwrap()
}

#[derive(Serialize)]
Expand Down

0 comments on commit 304bf42

Please sign in to comment.