File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ fn create_default_database(configuration_directory: &Path) -> String {
502502}
503503
504504#[ cfg( any( test, not( feature = "lambda-web" ) ) ) ]
505- fn encode_uri ( path : & Path ) -> std:: borrow:: Cow < str > {
505+ fn encode_uri ( path : & Path ) -> std:: borrow:: Cow < ' _ , str > {
506506 const ASCII_SET : & percent_encoding:: AsciiSet = & percent_encoding:: NON_ALPHANUMERIC
507507 . remove ( b'-' )
508508 . remove ( b'_' )
Original file line number Diff line number Diff line change @@ -805,7 +805,7 @@ impl OidcLoginState {
805805 }
806806}
807807
808- fn create_state_cookie ( login_state : & OidcLoginState ) -> Cookie {
808+ fn create_state_cookie ( login_state : & OidcLoginState ) -> Cookie < ' _ > {
809809 let state_json = serde_json:: to_string ( login_state) . unwrap ( ) ;
810810 Cookie :: build ( SQLPAGE_STATE_COOKIE_NAME , state_json)
811811 . secure ( true )
You can’t perform that action at this time.
0 commit comments