Noreposts Feed
at main 55 lines 1.2 kB view raw
1[package] 2name = "following-no-reposts-feed" 3version = "0.1.0" 4edition = "2021" 5 6[dependencies] 7# WebSocket for Jetstream 8tokio-tungstenite = { version = "0.28", features = ["native-tls"] } 9futures = "0.3" 10url = "2.3" 11 12# AT Protocol libraries 13atrium-xrpc-client = "0.5" 14atrium-identity = "0.1" 15atrium-crypto = "0.1" 16atrium-common = "0.1" 17 18# Web server 19axum = "0.8" 20tower = "0.5" 21tower-http = { version = "0.6", features = ["cors", "trace"] } 22 23# Database 24sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "uuid"] } 25 26# Async runtime 27tokio = { version = "1.0", features = ["full"] } 28 29# Serialization 30serde = { version = "1.0", features = ["derive"] } 31serde_json = "1.0" 32 33# Utilities 34anyhow = "1.0" 35tracing = "0.1" 36tracing-subscriber = "0.3" 37chrono = { version = "0.4", features = ["serde"] } 38uuid = { version = "1.0", features = ["v4", "serde"] } 39clap = { version = "4.0", features = ["derive", "env"] } 40async-trait = "0.1" 41 42# JWT handling 43jwt-compact = { version = "0.8", features = ["es256k"] } 44 45# HTTP client 46reqwest = { version = "0.12", features = ["json"] } 47 48# Environment 49dotenvy = "0.15" 50 51# Caching 52moka = { version = "0.12", features = ["future"] } 53 54# Encoding 55base64 = "0.22"