From 7923d0a9578bd63a094fc8a22a2a1f41d77c6034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabor=20K=C3=B6rber?= Date: Thu, 25 Jan 2024 21:56:18 +0100 Subject: [PATCH] refactor: unused import, removed bin command for adaptive run --- Justfile | 5 +---- src/vbplay.rs | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Justfile b/Justfile index 4dcc9f4..48bdc35 100644 --- a/Justfile +++ b/Justfile @@ -1,10 +1,7 @@ default: @just hello -run: - @cargo run main - -bin args='': +run args='soundboard': @cargo run --bin {{args}} hello: diff --git a/src/vbplay.rs b/src/vbplay.rs index 6cee62d..8438401 100644 --- a/src/vbplay.rs +++ b/src/vbplay.rs @@ -1,6 +1,5 @@ use cpal::traits::{DeviceTrait, HostTrait}; use cpal::{Device, Host}; -use enigo::*; use log::{debug, error, info}; use minimp3::{Decoder, Error}; use regex::Regex;