From 47a5ea9fd4e01a3f39bbe6b8563f2982ada29459 Mon Sep 17 00:00:00 2001 From: MATSUNAGA Takuya Date: Thu, 19 Dec 2024 21:34:27 +0900 Subject: [PATCH] Remove unused 'dirs' dependency in get_database_path.rs This commit eliminates the import of the 'dirs' crate in the get_database_path.rs file, as it was not being utilized. This cleanup helps to improve code readability and reduce unnecessary dependencies. --- src-tauri/src/get_database_path.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src-tauri/src/get_database_path.rs b/src-tauri/src/get_database_path.rs index 9b20a67..696c942 100644 --- a/src-tauri/src/get_database_path.rs +++ b/src-tauri/src/get_database_path.rs @@ -1,4 +1,3 @@ -use dirs; use std::fs; use std::io;