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/io.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ci-lib-native/src/io.rs') diff --git a/ci-lib-native/src/io.rs b/ci-lib-native/src/io.rs index d41349c..6071794 100644 --- a/ci-lib-native/src/io.rs +++ b/ci-lib-native/src/io.rs @@ -1,11 +1,9 @@ use tokio::io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt}; use futures_util::StreamExt; use tokio::fs::File; -use std::io::Write; use tokio::fs::OpenOptions; use std::task::{Poll, Context}; use std::pin::Pin; -use std::time::{UNIX_EPOCH, SystemTime}; use std::sync::{Arc, Mutex}; #[derive(Clone)] @@ -26,7 +24,7 @@ impl VecSink { impl tokio::io::AsyncWrite for VecSink { fn poll_write( self: Pin<&mut Self>, - cx: &mut Context, + _cx: &mut Context, buf: &[u8] ) -> Poll> { self.body.lock().unwrap().extend_from_slice(buf); @@ -92,6 +90,7 @@ impl tokio::io::AsyncWrite for ArtifactStream { pub struct ArtifactDescriptor { + #[allow(dead_code)] job_id: u64, pub artifact_id: u64, file: File, -- cgit v1.1