Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOmer Ben-Amram <omerbenamram@gmail.com>2019-06-03 16:07:56 +0300
committerOmer Ben-Amram <omerbenamram@gmail.com>2019-06-03 16:07:56 +0300
commit2f6c0d02c39e896b39bd9d92b63f505abd93de32 (patch)
tree2bf17a23cd4de5ded89e0df3d4063a63a1985e39 /src
parentb4725823ce8a834fb4bc2f924d181f4efd12cd48 (diff)
cargo fix
Diffstat (limited to 'src')
-rw-r--r--src/bin/mft_dump.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/mft_dump.rs b/src/bin/mft_dump.rs
index aff2cb0..7815da1 100644
--- a/src/bin/mft_dump.rs
+++ b/src/bin/mft_dump.rs
@@ -1,16 +1,16 @@
use clap::{App, Arg, ArgMatches};
use env_logger;
use indoc::indoc;
-use log::{info, Level};
+use log::Level;
-use mft::attribute::{MftAttributeContent, MftAttributeType};
+use mft::attribute::MftAttributeType;
use mft::mft::MftParser;
use mft::{MftEntry, ReadSeek};
use dialoguer::Confirmation;
use mft::csv::FlatMftEntryWithName;
-use snafu::{Backtrace, ErrorCompat, Snafu};
+use snafu::ErrorCompat;
use std::fs::File;
use std::io::Write;
use std::path::{Path, PathBuf};