From c0ed2168c6b39301511b84f52bd3f7b57a39024d Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 29 Oct 2023 15:43:03 -0700 Subject: no more warnings :) --- ci-lib-native/src/notifier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci-lib-native/src/notifier.rs') diff --git a/ci-lib-native/src/notifier.rs b/ci-lib-native/src/notifier.rs index dd4a35c..a6d7469 100644 --- a/ci-lib-native/src/notifier.rs +++ b/ci-lib-native/src/notifier.rs @@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize}; use std::sync::Arc; use axum::http::StatusCode; use lettre::transport::smtp::authentication::{Credentials, Mechanism}; -use lettre::{Message, Transport}; +use lettre::Message; use lettre::transport::smtp::extension::ClientId; use lettre::transport::smtp::client::{SmtpConnection, TlsParametersBuilder}; use std::time::Duration; @@ -88,7 +88,7 @@ impl RemoteNotifier { } } - pub async fn tell_job_status(&self, ctx: &Arc, repo_id: u64, sha: &str, job_id: u64, state: &str, desc: &str, target_url: &str) -> Result<(), String> { + pub async fn tell_job_status(&self, _ctx: &Arc, _repo_id: u64, sha: &str, _job_id: u64, state: &str, desc: &str, target_url: &str) -> Result<(), String> { match &self.notifier { NotifierConfig::GitHub { token } => { let status_info = serde_json::json!({ -- cgit v1.1