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

remove some prints

-5
-5
constellation/src/storage/rocks_store.rs
··· 961 961 let after = after.map(|s| s.parse::<u64>().map(TargetId)).transpose()?; 962 962 963 963 let Some(target_id) = self.target_id_table.get_id_val(&self.db, &target_key)? else { 964 - eprintln!("nothin doin for this target, {target_key:?}"); 965 964 return Ok(PagedOrderedCollection::empty()); 966 965 }; 967 966 ··· 1022 1021 .take(1) 1023 1022 .next() 1024 1023 else { 1025 - eprintln!("no forward match"); 1026 1024 continue; 1027 1025 }; 1028 1026 ··· 1172 1170 None => None, 1173 1171 }; 1174 1172 1175 - eprintln!("cursor: {:#?}", cursor); 1176 - 1177 1173 // (__active__) did ids and filter targets 1178 1174 let filter_did_ids: HashMap<DidId, bool> = filter_link_dids 1179 1175 .iter() ··· 1225 1221 .into_iter() 1226 1222 .enumerate() 1227 1223 .filter(|(_, RecordLinkTarget(rpath, target_id))| { 1228 - eprintln!("rpath.0: {} vs. path_to_other: {path_to_other}", rpath.0); 1229 1224 rpath.0 == path_to_other 1230 1225 && (filter_to_target_ids.is_empty() 1231 1226 || filter_to_target_ids.contains(target_id))