modified: Cargo.lock

modified:   Cargo.toml
	modified:   src/sobjects.rs
This commit is contained in:
Michael Wain 2025-02-13 03:33:36 +03:00
parent 39602b6325
commit 736d4560a5
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -1036,7 +1036,7 @@ dependencies = [
[[package]]
name = "soundcloud"
version = "0.1.6"
version = "0.1.7"
dependencies = [
"hyper-util",
"regex",

View File

@ -1,6 +1,6 @@
[package]
name = "soundcloud"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
description = "A small rust crate for fetching data from soundcloud without developer account"
authors = ["alterwain"]

View File

@ -33,8 +33,8 @@ pub struct CloudTrack {
#[derive(Debug, serde::Deserialize, Clone)]
pub struct CloudArtist {
username: Option<String>,
permalink: String,
pub username: Option<String>,
pub permalink: String,
}
#[derive(Debug, serde::Deserialize, Clone)]