The smokesignal.events web application

chore: updating dep

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