[package]
edition = "2021"
name = "rsoundcloud"
version = "0.2.6"
authors = ["Bartholomé Gili <dev.bartho@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A SoundCloud API client"
homepage = "https://github.com/barthofu/rsoundcloud"
readme = "README.md"
keywords = [
"soundcloud",
"api",
]
categories = [
"api-bindings",
"multimedia::audio",
]
license = "MIT"
repository = "https://github.com/barthofu/rsoundcloud"
[lib]
name = "rsoundcloud"
path = "src/lib.rs"
[[example]]
name = "custom_client"
path = "examples/custom_client.rs"
[[test]]
name = "test_api_misc"
path = "tests/test_api_misc.rs"
[[test]]
name = "test_api_playlists"
path = "tests/test_api_playlists.rs"
[[test]]
name = "test_api_search"
path = "tests/test_api_search.rs"
[[test]]
name = "test_api_tracks"
path = "tests/test_api_tracks.rs"
[[test]]
name = "test_api_users"
path = "tests/test_api_users.rs"
[[test]]
name = "test_client"
path = "tests/test_client.rs"
[[test]]
name = "test_custom_client"
path = "tests/test_custom_client.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.futures]
version = "0.3.31"
[dependencies.log]
version = "0.4.28"
[dependencies.regex]
version = "1.11.2"
[dependencies.reqwest]
version = "0.12.23"
features = [
"json",
"socks",
"rustls-tls",
"cookies",
]
default-features = false
[dependencies.serde]
version = "1.0.221"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_path_to_error]
version = "0.1.19"
[dependencies.thiserror]
version = "2.0.16"
[dependencies.tokio]
version = "1.47.1"
features = ["full"]
default-features = false
[dependencies.url]
version = "2.5.7"
[profile.release]
lto = true
codegen-units = 1
strip = true