1 parent 87c761f commit 7831129Copy full SHA for 7831129
1 file changed
src/internal/pack/cache_object.rs
@@ -183,8 +183,8 @@ impl FileLoadStore for CacheObject {
183
}
184
185
fn f_save(&self, path: &Path) -> Result<(), io::Error> {
186
- let data =
187
- rkyv::to_bytes::<RkyvError>(&CacheObjectOnDiskRef::from(self)).map_err(io::Error::other)?;
+ let data = rkyv::to_bytes::<RkyvError>(&CacheObjectOnDiskRef::from(self))
+ .map_err(io::Error::other)?;
188
write_bytes_atomically(path, &data)
189
190
0 commit comments