Skip to content

Commit

Permalink
cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
twitu committed Jun 11, 2024
1 parent 4182405 commit 51ff732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fs-storage/src/base_storage.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use data_error::Result;
use std::{collections::BTreeMap, time::SystemTime};
use std::{collections::BTreeMap};

#[derive(Debug, PartialEq, PartialOrd, Ord, Eq, Clone)]
/// Represents the synchronization status of the storage.
Expand Down
4 changes: 2 additions & 2 deletions fs-storage/src/file_storage.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use serde::{Deserialize, Serialize};
use std::fs::{self, File};
use std::io::{BufWriter, Write};
use std::io::{Write};
use std::time::SystemTime;
use std::{
collections::BTreeMap,
Expand Down Expand Up @@ -307,7 +307,7 @@ where

#[cfg(test)]
mod tests {
use std::{collections::BTreeMap, fs};
use std::{collections::BTreeMap};
use tempdir::TempDir;

use crate::{
Expand Down

0 comments on commit 51ff732

Please sign in to comment.