Update to Rust edition 2018

This commit is contained in:
timvisee 2019-01-12 23:34:38 +01:00
parent 26bdcebe00
commit 3ceff500cf
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2
40 changed files with 105 additions and 102 deletions

View file

@ -3,10 +3,10 @@ use ffsend_api::action::params::PARAMS_DEFAULT_DOWNLOAD as DOWNLOAD_DEFAULT;
use ffsend_api::url::Url;
use super::Matcher;
use cmd::arg::{
use crate::cmd::arg::{
ArgDownloadLimit, ArgGenPassphrase, ArgHost, ArgPassword, CmdArgFlag, CmdArgOption,
};
use util::{env_var_present, quit_error_msg, ErrorHintsBuilder};
use crate::util::{env_var_present, quit_error_msg, ErrorHintsBuilder};
/// The upload command matcher.
pub struct UploadMatcher<'a> {