1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 01:39:28 +02:00

Update Cargo.lock

This commit is contained in:
Roderick van Domburg 2024-10-15 20:34:15 +02:00
parent b629f61f67
commit 84d28e887b
No known key found for this signature in database
GPG key ID: FE2585E713F9F30A
19 changed files with 549 additions and 145 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-oauth"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.73"
authors = ["Nick Steel <nick@nsteel.co.uk>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"

18
oauth/Cargo.toml-e Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "librespot-oauth"
version = "0.5.0-dev"
rust-version = "1.73"
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 = "4.4"
thiserror = "1.0"
url = "2.2"
[dev-dependencies]
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }