A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at setup-tracing 46 lines 1.0 kB view raw
1[package] 2name = "rocksky-dropbox" 3version = "0.1.0" 4authors.workspace = true 5edition.workspace = true 6license.workspace = true 7repository.workspace = true 8 9[dependencies] 10actix-web = "4.9.0" 11aes = "0.8.4" 12anyhow = "1.0.96" 13async-nats = "0.39.0" 14chrono = { version = "= 0.4.39", features = ["serde"] } 15clap = "4.5.31" 16ctr = "0.9.2" 17dotenv = "0.15.0" 18futures = "0.3.31" 19hex = "0.4.3" 20jsonwebtoken = "9.3.1" 21lofty = "0.22.2" 22md5 = "0.7.0" 23owo-colors = "4.1.0" 24redis = "0.29.0" 25reqwest = { version = "0.12.12", features = [ 26 "rustls-tls", 27 "json", 28 "multipart", 29 "stream", 30], default-features = false } 31serde = { version = "1.0.217", features = ["derive"] } 32serde_json = "1.0.139" 33sha256 = "1.6.0" 34sqlx = { version = "0.8.3", features = [ 35 "runtime-tokio", 36 "tls-rustls", 37 "postgres", 38 "chrono", 39 "derive", 40 "macros", 41] } 42symphonia = { version = "0.5.4", features = ["all"] } 43tempfile = "3.19.1" 44tokio = { version = "1.43.0", features = ["full"] } 45tokio-stream = { version = "0.1.17", features = ["full"] } 46tracing = "0.1.41"