Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ crossbeam = "0.8.2"
dirs = "4.0"
futures = { version = "0.3", optional = true }
goblin = "0.6" # Keep in sync with symbolic-debuginfo
hashbrown = { version = "0.12", features = ["serde"] }
log = "0.4"
lzma-rs = "0.2.0"
num_cpus = "1.13"
Expand Down
2 changes: 1 addition & 1 deletion src/dumper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// copied, modified, or distributed except according to those terms.

use crossbeam::channel::{bounded, Receiver, Sender};
use hashbrown::HashMap;
use log::{error, info};
use std::collections::HashMap;
use std::fmt;
use std::fs;
use std::path::{Path, PathBuf};
Expand Down
2 changes: 1 addition & 1 deletion src/mapping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use hashbrown::{HashMap, HashSet};
use log::warn;
use regex::Regex;
use serde::Deserialize;
use sha2::{Digest, Sha512};
use std::collections::{HashMap, HashSet};
use std::path::Path;
use std::sync::Mutex;

Expand Down
2 changes: 1 addition & 1 deletion src/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use hashbrown::{hash_map, HashMap};
use log::error;
use std::collections::{hash_map, HashMap};
use std::fs;
use std::path::PathBuf;
use std::sync::Arc;
Expand Down