forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1[package]
2name = "rocksky-jetstream"
3version = "0.1.0"
4authors.workspace = true
5edition.workspace = true
6license.workspace = true
7repository.workspace = true
8
9[dependencies]
10anyhow = "1.0.98"
11chrono = { version = "= 0.4.39", features = ["serde"] }
12serde = { version = "1.0.219", features = ["derive"] }
13serde_json = "1.0.140"
14tokio = { version = "1.43.0", features = ["full"] }
15tungstenite = { version = "0.26.2", features = ["rustls"] }
16tokio-tungstenite = { version = "0.26.2", features = [
17 "tokio-rustls",
18 "rustls-tls-webpki-roots",
19] }
20url = "2.5.4"
21owo-colors = "4.1.0"
22dotenv = "0.15.0"
23tokio-stream = { version = "0.1.17", features = ["full"] }
24sqlx = { version = "0.8.3", features = [
25 "runtime-tokio",
26 "tls-rustls",
27 "postgres",
28 "chrono",
29 "derive",
30 "macros",
31] }
32async-nats = "0.39.0"
33futures-util = "0.3.31"
34reqwest = { version = "0.12.12", features = [
35 "rustls-tls",
36 "json",
37], default-features = false }
38sha256 = "1.6.0"
39time = { version = "0.3.44", features = ["formatting", "macros"] }
40redis = { version = "0.29.0", features = ["aio", "tokio-comp"] }
41tracing = "0.1.41"