fix: add missing meta_name implementation and fix compilation errors

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-26 18:05:02 -03:00
parent 1f82be1f02
commit 3fb436dc44
8 changed files with 18 additions and 24 deletions

View File

@@ -8,7 +8,6 @@ use std::io::Read;
use std::path::PathBuf;
use std::sync::Arc;
use tokio::sync::Mutex;
use log::warn;
/// An asynchronous wrapper around the `ItemService` for use in async contexts like the web server.
/// It uses `tokio::task::spawn_blocking` to run synchronous database and filesystem operations

View File

@@ -9,7 +9,7 @@ use crate::db::{self, Meta};
use crate::compression_engine::{get_compression_engine, CompressionType};
use crate::modes::common::settings_compression_type;
use clap::Command;
use log::{debug, warn};
use log::debug;
use rusqlite::Connection;
use std::collections::HashMap;
use std::fs;