Compare commits

...

3 Commits

Author SHA1 Message Date
0b8ae56eb4 tsk-41: Version bump
All checks were successful
Rust Build / Check (pull_request) Successful in 32s
Rust Build / Rustfmt (pull_request) Successful in 32s
Rust Build / Clippy (pull_request) Successful in 38s
Rust Build / build (pull_request) Successful in 34s
Rust Build / Test Suite (pull_request) Successful in 1m13s
2025-08-14 19:08:35 -04:00
af67d5bea0 tsk-41: Lingering cleanup 2025-08-14 19:08:24 -04:00
99cb6318d6 tsk-41: Removing unused env variable 2025-08-14 19:06:25 -04:00
5 changed files with 2 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
ROOT_DIRECTORY=/home/songparser/mydata
ICARUS_BASE_API_URL=http://localhost:3000
ICARUS_AUTH_BASE_API_URL=http://localhost:3001
SECRET_KEY=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH
SERVICE_PASSPHRASE=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH

View File

@@ -1,5 +1,4 @@
ROOT_DIRECTORY=/home/songparser/mydata
ICARUS_BASE_API_URL=http://localhost:3000
ICARUS_AUTH_BASE_API_URL=http://localhost:3001
SECRET_KEY=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH
SERVICE_PASSPHRASE=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH

2
Cargo.lock generated
View File

@@ -1318,7 +1318,7 @@ dependencies = [
[[package]]
name = "songparser"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"futures",
"icarus_envy",

View File

@@ -1,6 +1,6 @@
[package]
name = "songparser"
version = "0.2.4"
version = "0.2.5"
edition = "2024"
rust-version = "1.88"

View File

@@ -39,7 +39,6 @@ pub mod parsing {
pub mod fetch_song_queue_data {
pub async fn get_data(
// base_url: &String,
app: &crate::config::App,
id: &uuid::Uuid,
) -> Result<reqwest::Response, reqwest::Error> {
@@ -53,7 +52,6 @@ pub mod fetch_song_queue_data {
pub mod get_metadata_queue {
pub async fn get(
// base_url: &String,
app: &crate::config::App,
song_queue_id: &uuid::Uuid,
) -> Result<reqwest::Response, reqwest::Error> {
@@ -107,7 +105,6 @@ pub mod get_metadata_queue {
pub mod get_coverart_queue {
pub async fn get(
// base_url: &String,
app: &crate::config::App,
song_queue_id: &uuid::Uuid,
) -> Result<reqwest::Response, reqwest::Error> {
@@ -124,7 +121,6 @@ pub mod get_coverart_queue {
}
pub async fn get_data(
// base_url: &String,
app: &crate::config::App,
coverart_queue_id: &uuid::Uuid,
) -> Result<reqwest::Response, reqwest::Error> {