rustfmt: max-width=120

This commit is contained in:
mrbeanc
2023-12-21 20:54:12 +08:00
parent a2e9072951
commit 737917e421
7 changed files with 11 additions and 22 deletions

View File

@@ -82,11 +82,7 @@ mod test {
util::setup_test_with_mit();
let index = super::Index::new();
let mut commit = super::Commit::new(
&index,
vec!["123".to_string(), "456".to_string()],
"test".to_string(),
);
let mut commit = super::Commit::new(&index, vec!["123".to_string(), "456".to_string()], "test".to_string());
assert!(commit.hash.len() == 0);
let hash = commit.save();

View File

@@ -128,8 +128,7 @@ impl Index {
let path = Index::get_path();
if path.exists() {
let json = fs::read_to_string(path).expect("无法读取index");
let relative_index: HashMap<PathBuf, FileMetaData> =
serde_json::from_str(&json).expect("无法解析index");
let relative_index: HashMap<PathBuf, FileMetaData> = serde_json::from_str(&json).expect("无法解析index");
self.entries = relative_index
.into_iter()
.map(|(path, value)| {

View File

@@ -145,9 +145,7 @@ impl Tree {
blob_hashs.append(
sub_blobs
.iter()
.map(|(path, blob_hash)| {
(PathBuf::from(entry.name.clone()).join(path), blob_hash.clone())
})
.map(|(path, blob_hash)| (PathBuf::from(entry.name.clone()).join(path), blob_hash.clone()))
.collect::<Vec<(PathBuf, Hash)>>()
.as_mut(),
);