From 0ea5f38f839d92f949ebddde9a739300b78b2b4b Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Tue, 10 Sep 2019 22:45:10 +0200 Subject: [PATCH] Fix clippy lints --- backend/src/statics.rs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/backend/src/statics.rs b/backend/src/statics.rs index 58c0fa6..5af288e 100644 --- a/backend/src/statics.rs +++ b/backend/src/statics.rs @@ -9,28 +9,25 @@ lazy_static! { pub(crate) static ref USER_AGENT: String = format!("yagcdn/{}", VERSION); pub(crate) static ref OPT: Opt = Opt::from_args(); pub(crate) static ref GITHUB_AUTH_QUERY: Cow<'static, str> = - Github::auth_query().unwrap_or_default().into(); + Github::auth_query().unwrap_or_default(); pub(crate) static ref CF_ZONE_IDENT: Cow<'static, str> = OPT .cf_zone .as_ref() .map(Cow::from) .or_else(|| load_env_var("CF_ZONE_IDENT")) - .expect("Cloudflare zone identifier not set") - .into(); + .expect("Cloudflare zone identifier not set"); pub(crate) static ref CF_AUTH_KEY: Cow<'static, str> = OPT .cf_auth_key .as_ref() .map(Cow::from) .or_else(|| load_env_var("CF_AUTH_KEY")) - .expect("Cloudflare auth key not set") - .into(); + .expect("Cloudflare auth key not set"); pub(crate) static ref CF_AUTH_USER: Cow<'static, str> = OPT .cf_auth_user .as_ref() .map(Cow::from) .or_else(|| load_env_var("CF_AUTH_USER")) - .expect("Cloudflare auth user not set") - .into(); + .expect("Cloudflare auth user not set"); pub(crate) static ref HOSTNAME: Cow<'static, str> = OPT .hostname .as_ref()