-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 1.02 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
[package]
name = "exospot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "migrate", "macros" ] }
rspotify = { version = "0.11", features = ["env-file"] }
tokio = { version = "1.11.0", features = ["rt-multi-thread", "macros"] }
futures = "0.3"
futures-util = "0.3.17"
async-stream = { version = "0.3.2", optional = true }
viuer = { version = "0.6", features = ["sixel"] }
reqwest = { version = "0.11", features = ["stream"] }
image = "0.24.6"
ratatui = { version = "0.23.0", features = ["all-widgets"]}
crossterm = { version = "0.25", features = ["event-stream"] }
bytes = "1"
open = "5"
urlencoding = "2.1.2"
anyhow = "1.0"
chrono = "0.4.26"
rodio = {version = "0.17.1", features = ["symphonia-mp3"] }
minimp3 = "0.5.1"
symphonia = { version = "0.5.3", features = ["mp3"] }
ratatu-image = {version = "0.1.1", features = ["crossterm", "sixel"] }
rand = "0.8.5"
base64 = "0.21.3"