Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
75
fork

Configure Feed

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

hotfix for poem async acme finalization

phil 4c502e90 38b86cd0

+4 -4
+2 -2
slingshot/Cargo.toml
··· 18 18 log = "0.4.27" 19 19 metrics = "0.24.2" 20 20 metrics-exporter-prometheus = { version = "0.17.1", features = ["http-listener"] } 21 - poem = { version = "3.1.12", features = ["acme", "static-files"] } 22 - poem-openapi = { version = "5.1.16", features = ["scalar"] } 21 + poem = { git = "https://github.com/uniphil/poem.git", branch = "acme/issue-async", features = ["acme", "static-files"] } 22 + poem-openapi = { git = "https://github.com/uniphil/poem.git", branch = "acme/issue-async", features = ["scalar"] } 23 23 reqwest = { version = "0.12.22", features = ["json"] } 24 24 rustls = "0.23.31" 25 25 serde = { version = "1.0.219", features = ["derive"] }
+2 -2
slingshot/src/main.rs
··· 36 36 #[clap(default_value_t = 64)] 37 37 record_cache_memory_mb: usize, 38 38 /// disk cache size in gigabytes for records 39 - #[arg(long, env = "SLINGSHOT_RECORD_CACHE_DISK_DB")] 39 + #[arg(long, env = "SLINGSHOT_RECORD_CACHE_DISK_GB")] 40 40 #[clap(default_value_t = 1)] 41 41 record_cache_disk_gb: usize, 42 42 /// memory cache size in megabytes for identities ··· 44 44 #[clap(default_value_t = 64)] 45 45 identity_cache_memory_mb: usize, 46 46 /// disk cache size in gigabytes for identities 47 - #[arg(long, env = "SLINGSHOT_IDENTITY_CACHE_DISK_DB")] 47 + #[arg(long, env = "SLINGSHOT_IDENTITY_CACHE_DISK_GB")] 48 48 #[clap(default_value_t = 1)] 49 49 identity_cache_disk_gb: usize, 50 50 /// the address of this server