From 2efc5f9444402c5ef9db25887f2e95d184af8e05 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sun, 9 Nov 2025 14:12:18 +0100 Subject: upgrade deps + clippy --- tool/src/add.rs | 2 +- tool/src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tool/src') diff --git a/tool/src/add.rs b/tool/src/add.rs index 04328b2..d5e7180 100644 --- a/tool/src/add.rs +++ b/tool/src/add.rs @@ -45,7 +45,7 @@ pub async fn add(action: Action) -> anyhow::Result<()> { } let correct = FuzzySelect::with_theme(&theme) - .items(&results) + .items(&*results) .default(0) .with_prompt("Metadata Source") .interact_opt() diff --git a/tool/src/cli.rs b/tool/src/cli.rs index a01c9dd..2731506 100644 --- a/tool/src/cli.rs +++ b/tool/src/cli.rs @@ -3,7 +3,7 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2025 metamuffin */ -use clap::{arg, Parser, ValueEnum}; +use clap::{Parser, ValueEnum}; use std::path::PathBuf; pub type Args = Action; -- cgit v1.3