Release #50

Merged
phoenix merged 6 commits from devel into main 2025-08-17 18:36:05 +00:00
3 changed files with 4 additions and 2 deletions
Showing only changes of commit 1c5de9dc26 - Show all commits

2
Cargo.lock generated
View File

@@ -60,7 +60,7 @@ dependencies = [
[[package]]
name = "icarus_models"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"rand",
"serde",

View File

@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.5.0"
version = "0.5.1"
edition = "2024"
rust-version = "1.88"
description = "models used for the icarus project"

View File

@@ -9,6 +9,7 @@ pub struct CoverArt {
pub path: String,
#[serde(skip)]
pub data: Vec<u8>,
pub song_id: uuid::Uuid,
}
pub mod init {
@@ -20,6 +21,7 @@ pub mod init {
title: String::new(),
path: path.clone(),
data: Vec::new(),
song_id: uuid::Uuid::nil(),
}
}
}