::group::cargo fmt --check
Diff in /home/runner/work/crater-at-home/crater-at-home/src/client.rs at line 60:
     }
 
     pub fn upload_raw(&self, krate: &Crate, data: &[u8]) -> Result<()> {
-       self.upload(&self.tool.raw_crate_path(krate), data)
+        self.upload(&self.tool.raw_crate_path(krate), data)
     }
 
     pub fn download_raw(&self, krate: &Crate) -> Result<Vec<u8>> {
Diff in /home/runner/work/crater-at-home/crater-at-home/src/sync.rs at line 46:
     crates.dedup_by(|(a, _), (b, _)| a.name == b.name);
 
     let ub_page = crate::render::render_ub(&crates)?;
-    client.upload(&format!("/crater-at-home/{}/ub", args.tool), ub_page.as_bytes())?;
+    client.upload(
+        &format!("/crater-at-home/{}/ub", args.tool),
+        ub_page.as_bytes(),
+    )?;
 
     Ok(())
 }