19 lines
601 B
TOML
19 lines
601 B
TOML
[package]
|
|
name = "soundcloud"
|
|
version = "0.1.11"
|
|
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"]
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12.12", features = ["json"] }
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
regex = "1.11.1"
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
serde_json = "1.0.138"
|
|
hyper-util = "0.1.10" |