grain.social is a photo sharing platform built on atproto. grain.social
atproto photography appview
50
fork

Configure Feed

Select the types of activity you want to include in your feed.

at deed218926c8850c374b9cf8cf4d874be238e690 28 lines 592 B view raw
1[package] 2name = "darkroom" 3version = "0.1.0" 4edition = "2024" 5 6[dependencies] 7tokio = { version = "1.0", features = ["full"] } 8axum = "0.7" 9serde = { version = "1.0", features = ["derive"] } 10serde_json = "1.0" 11reqwest = { version = "0.12", features = ["json"] } 12anyhow = "1.0" 13minijinja = "2.0" 14tracing = "0.1" 15tracing-subscriber = "0.3" 16urlencoding = "2.1" 17fantoccini = "0.22" 18tower = "0.4" 19tower-http = { version = "0.5", features = ["cors", "trace", "fs"] } 20thiserror = "1.0" 21futures = "0.3" 22chrono = "0.4.41" 23 24[profile.release] 25opt-level = 3 26lto = true 27codegen-units = 1 28panic = "abort"