-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
27 lines (24 loc) · 836 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "spotify-rs"
version = "0.3.14"
edition = "2021"
description = "A Rust wrapper for the Spotify API."
readme = "README.md"
repository = "https://github.com/Bogpan/spotify-rs"
license = "MIT OR Apache-2.0"
keywords = ["spotify", "spotify-api", "api"]
categories = ["api-bindings", "asynchronous", "web-programming::http-client"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
reqwest = { version = "0.11", features = ["json"] }
base64 = "0.21"
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
oauth2 = "4.4"
thiserror = "1.0"
strum = { version = "0.25", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1.32", features = ["macros"] }