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

Address fig's comments

see https://tangled.org/microcosm.blue/microcosm-rs/pulls/9/round/3#comment-1707

+1 -2
+1 -2
constellation/src/server/mod.rs
··· 615 615 #[serde(skip_serializing)] 616 616 query: GetLinkItemsQuery, 617 617 } 618 - #[deprecated] 619 618 fn get_links( 620 619 accept: ExtractAccept, 621 620 query: axum_extra::extract::Query<GetLinkItemsQuery>, // supports multiple param occurrences ··· 725 724 let path = format!(".{path}"); 726 725 727 726 let paged = store 728 - .get_distinct_dids(&query.subject, &collection, &path, limit, until) 727 + .get_distinct_dids(&query.subject, collection, &path, limit, until) 729 728 .map_err(|_| http::StatusCode::INTERNAL_SERVER_ERROR)?; 730 729 731 730 let cursor = paged.next.map(|next| {