The smokesignal.events web application

chore: updating dep

+14 -4
+4 -2
lexicon/events.smokesignal.profile.json
··· 15 15 "maxGraphemes": 200, 16 16 "maxLength": 200 17 17 }, 18 - "profile_host": { 18 + "profileHost": { 19 19 "type": "string", 20 20 "description": "The format used for profile links", 21 21 "knownValues": [ 22 22 "bsky.app", 23 23 "blacksky.community", 24 24 "aturi" 25 - ] 25 + ], 26 + "maxGraphemes": 60, 27 + "maxLength": 60 26 28 }, 27 29 "description": { 28 30 "type": "string",
+8
src/http/server.rs
··· 148 148 .route("/_alive", get(handle_alive)) 149 149 .route("/_started", get(handle_started)) 150 150 .route( 151 + "/xrpc/community.lexicon.calendar.searchEvents", 152 + get(handle_xrpc_search_events), 153 + ) 154 + .route( 151 155 "/xrpc/community.lexicon.calendar.SearchEvents", 152 156 get(handle_xrpc_search_events), 153 157 ) 154 158 .route( 159 + "/xrpc/community.lexicon.calendar.getEvent", 160 + get(handle_xrpc_get_event), 161 + ) 162 + .route( 155 163 "/xrpc/community.lexicon.calendar.GetEvent", 156 164 get(handle_xrpc_get_event), 157 165 )