modified: Cargo.lock

modified:   Cargo.toml
	modified:   src/sobjects.rs
This commit is contained in:
Michael Wain 2025-02-10 03:44:17 +03:00
parent e72cbc407a
commit 41510cba17
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -10,7 +10,7 @@ pub struct CloudPlaylist {
pub genre: String,
pub id: u64,
pub permalink_url: String,
pub created_at: u32,
pub created_at: String,
pub title: String,
pub track_count: u32,
pub tracks: Vec<CloudTrack>