forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1[package]
2name = "rocksky-spotify"
3version = "0.1.0"
4authors.workspace = true
5edition.workspace = true
6license.workspace = true
7repository.workspace = true
8
9[dependencies]
10aes = "0.8.4"
11anyhow = "1.0.96"
12async-nats = "0.39.0"
13chrono = { version = "= 0.4.39", features = ["serde"] }
14ctr = "0.9.2"
15dotenv = "0.15.0"
16hex = "0.4.3"
17jsonwebtoken = "9.3.1"
18owo-colors = "4.1.0"
19redis = "0.29.0"
20reqwest = { version = "0.12.12", features = [
21 "rustls-tls",
22 "json",
23 "multipart",
24], default-features = false }
25serde = { version = "1.0.217", features = ["derive"] }
26serde_json = "1.0.139"
27sqlx = { version = "0.8.3", features = [
28 "runtime-tokio",
29 "tls-rustls",
30 "postgres",
31 "chrono",
32 "derive",
33 "macros",
34] }
35tokio = { version = "1.43.0", features = ["full"] }
36tokio-stream = { version = "0.1.17", features = ["full"] }
37tracing = "0.1.41"