modified radicle-httpd/Cargo.toml
@@ -24,6 +24,7 @@ fastrand = { version = "1.9.0" }
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified radicle-httpd/src/api.rs
@@ -25,6 +25,9 @@ mod error;
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -34,13 +37,15 @@ type SessionId = String;
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified radicle-httpd/src/api/v1/projects.rs
@@ -309,12 +309,24 @@ async fn tree_handler(
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
added radicle-httpd/src/cache.rs
@@ -0,0 +1,22 @@
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
modified radicle-httpd/src/lib.rs
@@ -4,6 +4,7 @@ pub mod error;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -24,16 +25,21 @@ use tracing_extra::{tracing_middleware, ColoredStatus, Paint, RequestId, Tracing
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -101,7 +107,7 @@ pub async fn run(options: Options) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -132,6 +138,7 @@ mod routes {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified radicle-httpd/src/main.rs
@@ -1,3 +1,4 @@
| + | |
|
|
|
|
|
@@ -51,6 +52,7 @@ fn parse_options() -> Result<httpd::Options, lexopt::Error> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -64,8 +66,12 @@ fn parse_options() -> Result<httpd::Options, lexopt::Error> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
| - | |
| + | |
|
|
|
|
|
@@ -74,5 +80,6 @@ fn parse_options() -> Result<httpd::Options, lexopt::Error> {
|
|
|
|
|
|
| + | |
|
|
|
modified radicle-httpd/src/test.rs
@@ -203,7 +203,13 @@ fn seed_with_signer<G: Signer>(dir: &Path, profile: radicle::Profile, signer: &G
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|