modified: Cargo.lock

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

2
Cargo.lock generated
View File

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

View File

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

View File

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