Compare commits

...

1 Commits

Author SHA1 Message Date
phoenix 655d05dabb Coverart ignore data for json usage (#47)
Reviewed-on: #47
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-07-14 23:57:00 +00:00
3 changed files with 3 additions and 2 deletions
Generated
+1 -1
View File
@@ -60,7 +60,7 @@ dependencies = [
[[package]]
name = "icarus_models"
version = "0.5.0"
version = "0.4.5"
dependencies = [
"rand",
"serde",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.5.0"
version = "0.4.5"
edition = "2024"
rust-version = "1.88"
description = "models used for the icarus project"
+1
View File
@@ -7,6 +7,7 @@ pub struct CoverArt {
pub id: uuid::Uuid,
pub title: String,
pub path: String,
#[serde(skip)]
pub data: Vec<u8>,
}