From 736d4560a5c6e44e289f6e33b59f042a11a557cb Mon Sep 17 00:00:00 2001 From: "alterwain@protonmail.com" Date: Thu, 13 Feb 2025 03:33:36 +0300 Subject: [PATCH] modified: Cargo.lock modified: Cargo.toml modified: src/sobjects.rs --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/sobjects.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48f7edd..447eecd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1036,7 +1036,7 @@ dependencies = [ [[package]] name = "soundcloud" -version = "0.1.6" +version = "0.1.7" dependencies = [ "hyper-util", "regex", diff --git a/Cargo.toml b/Cargo.toml index d964071..434a93d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/src/sobjects.rs b/src/sobjects.rs index 8460b05..87adf8d 100644 --- a/src/sobjects.rs +++ b/src/sobjects.rs @@ -33,8 +33,8 @@ pub struct CloudTrack { #[derive(Debug, serde::Deserialize, Clone)] pub struct CloudArtist { - username: Option, - permalink: String, + pub username: Option, + pub permalink: String, } #[derive(Debug, serde::Deserialize, Clone)]