mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 01:39:28 +02:00
30 lines
810 B
TOML
30 lines
810 B
TOML
[package]
|
|
name = "librespot-oauth"
|
|
version = "0.6.0-dev"
|
|
rust-version.workspace = true
|
|
authors = ["Nick Steel <nick@nsteel.co.uk>"]
|
|
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
|
|
license = "MIT"
|
|
repository = "https://github.com/librespot-org/librespot"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
oauth2 = { version = "5.0", features = ["reqwest", "reqwest-blocking"] }
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
"blocking",
|
|
"http2",
|
|
"rustls-tls",
|
|
"system-proxy",
|
|
] }
|
|
open = "5.3"
|
|
thiserror = "2"
|
|
url = "2.5"
|
|
|
|
[dev-dependencies]
|
|
env_logger = { version = "0.11", default-features = false, features = [
|
|
"color",
|
|
"humantime",
|
|
"auto-color",
|
|
] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|