-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (34 loc) · 1.01 KB
/
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
28
29
30
31
32
33
34
35
36
37
[package]
name = "lastfm"
version = "0.10.0"
edition = "2021"
authors = ["Luciano Mammino"]
description = "An async client to fetch your Last.fm listening history or the track you are currently playing"
documentation = "https://docs.rs/lastfm"
repository = "https://github.com/lmammino/lastfm"
keywords = ["lastfm", "web", "api"]
categories = ["api-bindings"]
license = "MIT"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.5"
chrono = { version = "0.4.23", features = ["serde"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
rand = "0.8.5"
reqwest = { version = "0.11", default_features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
thiserror = "1.0.40"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.11"
tracing = "0.1.37"
typed-builder = "0.16.0"
url = "2.3.1"
[dev-dependencies]
insta = "1.26.0"
futures-util = "0.3.26"