Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Rust 1.67
Fintan Halpenny committed 3 years ago
commit d8da80821b1696c6872cb4bec09ea61c1a2f4eab
parent 6d9154d4276f200785ee053fe00c286796e7bf01
2 files changed +3 -3
modified radicle-httpd/src/api/axum_extra.rs
@@ -39,7 +39,7 @@ where
                    }
                    _ => Json(Error {
                        success: false,
-
                        error: format!("{}", rejection),
+
                        error: format!("{rejection}"),
                    }),
                };

@@ -72,7 +72,7 @@ where
                    }),
                    _ => Json(Error {
                        success: false,
-
                        error: format!("{}", rejection),
+
                        error: format!("{rejection}"),
                    }),
                };

modified radicle-httpd/src/lib.rs
@@ -254,7 +254,7 @@ async fn git_http_backend(
            Err(Error::Backend)
        }
        Err(err) => {
-
            panic!("failed to wait for git-http-backend: {}", err);
+
            panic!("failed to wait for git-http-backend: {err}");
        }
    }
}