Compare commits

..

3 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
phoenix 7958b89abc Update readme (#46)
Reviewed-on: #46
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-06-29 18:14:18 +00:00
phoenix c0d23e0640 Version bump (#45)
Reviewed-on: #45
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-06-29 18:02:23 +00:00
4 changed files with 5 additions and 2 deletions
Generated
+1 -1
View File
@@ -60,7 +60,7 @@ dependencies = [
[[package]]
name = "icarus_models"
version = "0.4.3"
version = "0.4.5"
dependencies = [
"rand",
"serde",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.4.3"
version = "0.4.5"
edition = "2024"
rust-version = "1.88"
description = "models used for the icarus project"
+2
View File
@@ -0,0 +1,2 @@
A library containing commonly used models and functions that is used throughout
icarus projects. This reduces the amount of duplicated code without a benefit.
+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>,
}