chore: bump deps; fix clippy lints & cleanup

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I4c4815ad145650a07f108614034d2e996a6a6964
This commit is contained in:
raf 2026-03-02 17:05:28 +03:00
commit cd1161ee5d
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
41 changed files with 1528 additions and 953 deletions

View file

@ -1,3 +1,8 @@
// Common test utilities shared across integration tests
// Functions may appear unused in individual test binaries - they're used across
// the test suite
#![allow(dead_code)]
use std::{collections::HashMap, path::PathBuf, sync::Arc};
use pinakes_core::{

View file

@ -1,9 +1,6 @@
use std::{collections::HashMap, sync::Arc};
use std::collections::HashMap;
use pinakes_core::{
model::*,
storage::{StorageBackend, sqlite::SqliteBackend},
};
use pinakes_core::{model::*, storage::StorageBackend};
mod common;
use common::{make_test_media, setup};