Reformat
diff --git a/sparse_strips/vello_bench/src/data.rs b/sparse_strips/vello_bench/src/data.rs index b7ce2be..873db9d 100644 --- a/sparse_strips/vello_bench/src/data.rs +++ b/sparse_strips/vello_bench/src/data.rs
@@ -126,9 +126,15 @@ name: file_name, fills: ctx.fills, strokes: ctx.strokes, - #[allow(clippy::cast_possible_truncation, reason = "It's okay to ignore for benchmarking.")] + #[allow( + clippy::cast_possible_truncation, + reason = "It's okay to ignore for benchmarking." + )] width: tree.size().width() as u16, - #[allow(clippy::cast_possible_truncation, reason = "It's okay to ignore for benchmarking.")] + #[allow( + clippy::cast_possible_truncation, + reason = "It's okay to ignore for benchmarking." + )] height: tree.size().height() as u16, } }