soundcloud_api/Cargo.toml
alterdekim a4f37099b1 new file: .gitignore
new file:   Cargo.lock
	new file:   Cargo.toml
	new file:   src/main.rs
2024-12-19 20:38:52 +03:00

15 lines
475 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"]
[lib]
crate-type = ["staticlib", "cdylib", "lib"]
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }