soundcloud_api/Cargo.toml
alterdekim f9914523bc modified: Cargo.lock
modified:   Cargo.toml
	modified:   src/main.rs
2024-12-23 04:37:27 +03:00

15 lines
518 B
TOML

[package]
name = "soundcloud"
version = "0.1.0"
edition = "2021"
description = "A small rust crate for fetching data from soundcloud without developer account"
authors = ["alterwain"]
keywords = ["api", "network", "audio", "music"]
categories = ["network-programming", "asynchronous", "api", "music", "audio"]
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
regex = "1.11.1"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"