From c749ce9939c0cff457dad779fbdb50a12c903bc5 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Sun, 8 Sep 2024 09:40:20 +0000 Subject: [PATCH] Remove unnecessary dependency Found with cargo-machete. --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce1781f1..503fa67f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,6 @@ dependencies = [ "owo-colors", "rustix", "strum", - "strum_macros", "udev", "uuid", "zeroize", diff --git a/Cargo.toml b/Cargo.toml index 312476ee..ed7c7c06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,6 @@ errno = "0.3" either = "1.5" bch_bindgen = { path = "bch_bindgen" } strum = { version = "0.26", features = ["derive"] } -strum_macros = "0.26" zeroize = { version = "1.5.5", features = ["std", "zeroize_derive"] } rustix = { version = "0.38.34", features = ["termios"] } owo-colors = "4"