A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
at feat/pgpull 24 lines 545 B view raw
1[package] 2name = "rocksky-pgpull" 3version = "0.1.0" 4authors.workspace = true 5edition.workspace = true 6license.workspace = true 7repository.workspace = true 8 9[dependencies] 10serde = { version = "1.0.217", features = ["derive"] } 11serde_json = "1.0.139" 12sqlx = { version = "0.8.3", features = [ 13 "runtime-tokio", 14 "tls-rustls", 15 "postgres", 16 "chrono", 17 "derive", 18 "macros", 19] } 20tokio = { version = "1.43.0", features = ["full"] } 21chrono = { version = "= 0.4.39", features = ["serde"] } 22owo-colors = "4.1.0" 23anyhow = "1.0.96" 24tracing = "0.1.41"