Compare commits

..

2 Commits

Author SHA1 Message Date
1bb31d7da7 tsk-44: Merge conflict
Some checks failed
Rust Build / Check (pull_request) Successful in 31s
Rust Build / Test Suite (pull_request) Successful in 36s
Rust Build / Rustfmt (pull_request) Failing after 35s
Rust Build / Clippy (pull_request) Successful in 43s
Rust Build / build (pull_request) Successful in 39s
2025-10-21 12:13:50 -04:00
5101f36aed tsk-44: Identify CoverArt type (#46)
Some checks failed
Rust Build / Check (push) Successful in 27s
Release Tagging / release (push) Successful in 35s
Rust Build / Test Suite (push) Successful in 38s
Rust Build / Clippy (push) Successful in 35s
Rust Build / Rustfmt (push) Failing after 37s
Rust Build / build (push) Successful in 36s
Closes #44

Reviewed-on: #46
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-10-21 15:48:40 +00:00

View File

@@ -9,6 +9,7 @@ pub mod test_util {
use rand::Rng; use rand::Rng;
// Function to save a Vec<u8> to a file // Function to save a Vec<u8> to a file
pub fn save_bytes_to_file(bytes: &[u8], file_path: &String) -> io::Result<()> { pub fn save_bytes_to_file(bytes: &[u8], file_path: &String) -> io::Result<()> {
let file = std::path::Path::new(file_path); let file = std::path::Path::new(file_path);