diff options
Diffstat (limited to 'corgi/src')
-rw-r--r-- | corgi/src/caller.rs | 3 | ||||
-rw-r--r-- | corgi/src/main.rs | 3 | ||||
-rw-r--r-- | corgi/src/stats.rs | 6 |
3 files changed, 3 insertions, 9 deletions
diff --git a/corgi/src/caller.rs b/corgi/src/caller.rs index a8b04c0..4f75d32 100644 --- a/corgi/src/caller.rs +++ b/corgi/src/caller.rs @@ -1,6 +1,5 @@ use std::{ ffi::{self, CString}, - io::Write, net::IpAddr, process::Stdio, ptr, @@ -10,7 +9,7 @@ use std::{ use tokio::{ io::AsyncWriteExt, process::Command, - sync::oneshot::{self, Receiver, Sender}, + sync::oneshot::{self, Sender}, }; use crate::{Script, ScriptKind}; diff --git a/corgi/src/main.rs b/corgi/src/main.rs index 6a3c528..9581f9f 100644 --- a/corgi/src/main.rs +++ b/corgi/src/main.rs @@ -2,7 +2,6 @@ use std::{ net::{IpAddr, SocketAddr}, path::PathBuf, pin::Pin, - process::Stdio, sync::Arc, time::Instant, }; @@ -20,7 +19,7 @@ use hyper::{ use hyper_util::rt::TokioIo; use regex_lite::Regex; use stats::Stats; -use tokio::{io::AsyncWriteExt, net::TcpListener, process::Command, runtime::Runtime}; +use tokio::{net::TcpListener, runtime::Runtime}; mod caller; mod stats; diff --git a/corgi/src/stats.rs b/corgi/src/stats.rs index 0e3b99a..e475820 100644 --- a/corgi/src/stats.rs +++ b/corgi/src/stats.rs @@ -1,8 +1,4 @@ -use std::{ - net::{IpAddr, SocketAddr}, - path::PathBuf, - sync::Mutex, -}; +use std::{net::IpAddr, path::PathBuf, sync::Mutex}; use base64::{Engine, prelude::BASE64_STANDARD_NO_PAD}; use rusqlite::{Connection, OptionalExtension, params}; |