From c2263099aaa7000e800432df479aa7b42b91e507 Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Mon, 20 Mar 2023 13:38:43 -0400 Subject: [PATCH] cargo-fix --- tfclient/src/embedded_nebula.rs | 2 +- tfclient/src/main.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tfclient/src/embedded_nebula.rs b/tfclient/src/embedded_nebula.rs index adaaed2..76b6ffc 100644 --- a/tfclient/src/embedded_nebula.rs +++ b/tfclient/src/embedded_nebula.rs @@ -4,7 +4,7 @@ use std::fs::File; use std::io::Write; use std::os::unix::fs::PermissionsExt; use std::path::PathBuf; -use std::process::{Child, Command, Output}; +use std::process::{Child, Command}; use log::debug; use crate::dirs::get_data_dir; use crate::util::sha256; diff --git a/tfclient/src/main.rs b/tfclient/src/main.rs index 8d07da2..1aac422 100644 --- a/tfclient/src/main.rs +++ b/tfclient/src/main.rs @@ -25,9 +25,9 @@ pub mod nebula_cert_bin { include!(concat!(env!("OUT_DIR"), "/nebula_cert.bin.rs")); } -use std::error::Error; + use std::fs; -use std::process::Child; + use clap::{Parser, ArgAction, Subcommand}; use log::{error, info}; use simple_logger::SimpleLogger;