modified: Cargo.lock

modified:   Cargo.toml
	modified:   src/lib.rs
This commit is contained in:
Michael Wain 2025-02-10 03:48:01 +03:00
parent 41510cba17
commit 22f02cfa43
3 changed files with 2 additions and 4 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -64,8 +64,6 @@ pub async fn get_app() -> Result<Option<String>, Box<dyn Error>> {
.text()
.await?;
println!("Resp: {}", resp);
let json: serde_json::Value = serde_json::from_str(&resp).expect("JSON was not well-formatted");
Ok(