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