summaryrefslogtreecommitdiffstats
path: root/src/filestore/staging.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-04 11:49:33 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-07 13:21:54 +0100
commita0235c900b052f31b221d7c0994598c014b1b791 (patch)
treecfecfa88cd12bfdec2a4125caa37c55699882221 /src/filestore/staging.rs
parentb653c3377c37458e23e837f54f5e597bf07641ba (diff)
Deny macro_use from external crate
Diesel is an exception here, because the generated src/schema.rs file does not automatically contain the necessary imports. All imports were added where necessary. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/filestore/staging.rs')
-rw-r--r--src/filestore/staging.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filestore/staging.rs b/src/filestore/staging.rs
index 26f91a8..cbc8732 100644
--- a/src/filestore/staging.rs
+++ b/src/filestore/staging.rs
@@ -8,6 +8,7 @@ use anyhow::Result;
use anyhow::anyhow;
use futures::stream::Stream;
use indicatif::ProgressBar;
+use log::trace;
use result_inspect::ResultInspect;
use tar;