From 961a30b47b347f105b7e82bdcac5b90f02f0068f Mon Sep 17 00:00:00 2001 From: mint Date: Thu, 15 Sep 2022 00:10:19 -0300 Subject: [PATCH] main: Removed PathBuf from dependencies This should suppress a warning indicating this exact issue --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 5020dc2..e7a4790 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ use std::env; use std::process; -use std::path::{Path, PathBuf}; +use std::path::{Path}; use colored::Colorize; mod inv;