|
@@ -15,15 +15,15 @@ use prettytable::{format::FormatBuilder, Cell, Row, Table};
|
|
use tempfile::{Builder as TempBuilder, NamedTempFile};
|
|
use tempfile::{Builder as TempBuilder, NamedTempFile};
|
|
|
|
|
|
#[cfg(feature = "archive")]
|
|
#[cfg(feature = "archive")]
|
|
-use archive::archiver::Archiver;
|
|
|
|
-use client::create_transfer_client;
|
|
|
|
-use cmd::matcher::{MainMatcher, Matcher, UploadMatcher};
|
|
|
|
|
|
+use crate::archive::archiver::Archiver;
|
|
|
|
+use crate::client::create_transfer_client;
|
|
|
|
+use crate::cmd::matcher::{MainMatcher, Matcher, UploadMatcher};
|
|
#[cfg(feature = "history")]
|
|
#[cfg(feature = "history")]
|
|
-use history_tool;
|
|
|
|
-use progress::ProgressBar;
|
|
|
|
|
|
+use crate::history_tool;
|
|
|
|
+use crate::progress::ProgressBar;
|
|
#[cfg(feature = "clipboard")]
|
|
#[cfg(feature = "clipboard")]
|
|
-use util::set_clipboard;
|
|
|
|
-use util::{
|
|
|
|
|
|
+use crate::util::set_clipboard;
|
|
|
|
+use crate::util::{
|
|
format_bytes, open_url, print_error, print_error_msg, prompt_yes, quit, quit_error_msg,
|
|
format_bytes, open_url, print_error, print_error_msg, prompt_yes, quit, quit_error_msg,
|
|
ErrorHintsBuilder,
|
|
ErrorHintsBuilder,
|
|
};
|
|
};
|