Reformat
diff --git a/sparse_strips/vello_cpu/src/render.rs b/sparse_strips/vello_cpu/src/render.rs
index 817f5d8..7031617 100644
--- a/sparse_strips/vello_cpu/src/render.rs
+++ b/sparse_strips/vello_cpu/src/render.rs
@@ -44,7 +44,10 @@
     pub(crate) fill_rule: Fill,
     pub(crate) temp_path: BezPath,
     pub(crate) encoded_paints: Vec<EncodedPaint>,
-    #[cfg_attr(not(feature = "text"), allow(dead_code, reason = "used when the `text` feature is enabled"))]
+    #[cfg_attr(
+        not(feature = "text"),
+        allow(dead_code, reason = "used when the `text` feature is enabled")
+    )]
     pub(crate) level: Level,
     dispatcher: Box<dyn Dispatcher>,
 }