From 883e24cfb2e6abf4b86f4b6426677a1c0375470f Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Wed, 17 May 2023 08:44:18 +0300 Subject: [PATCH] run `cargo fix` --- src/superviseur/drivers/devbox/driver.rs | 2 -- src/superviseur/drivers/docker/driver.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/superviseur/drivers/devbox/driver.rs b/src/superviseur/drivers/devbox/driver.rs index b8f8deb..9958079 100644 --- a/src/superviseur/drivers/devbox/driver.rs +++ b/src/superviseur/drivers/devbox/driver.rs @@ -11,7 +11,6 @@ use anyhow::Error; use async_trait::async_trait; use nix::{ sys::{ - event, signal::{self, Signal}, }, unistd::Pid, @@ -21,7 +20,6 @@ use spinners::{Spinner, Spinners}; use tokio::sync::mpsc; use crate::{ - api::superviseur, graphql::{ schema::objects::subscriptions::{LogStream, TailLogStream}, simple_broker::SimpleBroker, diff --git a/src/superviseur/drivers/docker/driver.rs b/src/superviseur/drivers/docker/driver.rs index 9f4f9bf..addac41 100644 --- a/src/superviseur/drivers/docker/driver.rs +++ b/src/superviseur/drivers/docker/driver.rs @@ -299,7 +299,7 @@ impl Driver { Ok(result) } - async fn build_container(&self, project: String, container_name: String) -> anyhow::Result<()> { + async fn build_container(&self, _project: String, container_name: String) -> anyhow::Result<()> { let builder = &self .config .as_ref()