Skip to content

Commit 826c666

Browse files
committed
Re-arrange imports
1 parent 1223c01 commit 826c666

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use anyhow::Result;
22
use goblin::{self, Object};
3-
use std::collections::HashMap;
3+
use std::collections::{HashMap, HashSet};
4+
use std::fs;
45
use std::path::Path;
5-
use std::{collections::HashSet, fs};
66

77
pub fn run(paths: &[String]) -> Result<()> {
88
let mut dependencies: HashMap<String, Vec<String>> = HashMap::new();

0 commit comments

Comments
 (0)