1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 01:39:28 +02:00
librespot/oauth/Cargo.toml
Roderick van Domburg ce1ab8ff3f
refactor: update dependencies and code for latest ecosystem changes
- Update many dependencies to latest versions across all crates
- Switch from `once_cell::OnceCell` to `std::sync::OnceLock` where appropriate
- Update OAuth to use stateful `reqwest` for HTTP requests
- Fix Rodio backend to honor the requested sample format
2025-08-13 13:19:48 +02:00

25 lines
726 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", features = ["blocking"] }
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"] }