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]] [[package]]
name = "soundcloud" name = "soundcloud"
version = "0.1.6" version = "0.1.7"
dependencies = [ dependencies = [
"hyper-util", "hyper-util",
"regex", "regex",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "soundcloud" name = "soundcloud"
version = "0.1.6" version = "0.1.7"
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

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