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
··· 626 #[serde(skip_serializing)] 627 query: GetLinkItemsQuery, 628 } 629 - #[deprecated] 630 fn get_links( 631 accept: ExtractAccept, 632 query: axum_extra::extract::Query<GetLinkItemsQuery>, // supports multiple param occurrences ··· 840 let path = format!(".{path}"); 841 842 let paged = store 843 - .get_distinct_dids(&query.subject, &collection, &path, limit, until) 844 .map_err(|_| http::StatusCode::INTERNAL_SERVER_ERROR)?; 845 846 let cursor = paged.next.map(|next| {
··· 626 #[serde(skip_serializing)] 627 query: GetLinkItemsQuery, 628 } 629 fn get_links( 630 accept: ExtractAccept, 631 query: axum_extra::extract::Query<GetLinkItemsQuery>, // supports multiple param occurrences ··· 839 let path = format!(".{path}"); 840 841 let paged = store 842 + .get_distinct_dids(&query.subject, collection, &path, limit, until) 843 .map_err(|_| http::StatusCode::INTERNAL_SERVER_ERROR)?; 844 845 let cursor = paged.next.map(|next| {