Fix error serialize in the `test-http-api` crate
modified Cargo.lock
@@ -3898,6 +3898,7 @@ name = "radicle-types"
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-types/Cargo.toml
@@ -5,6 +5,7 @@ edition = "2021"
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-types/src/error.rs
@@ -1,3 +1,6 @@
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -108,6 +111,16 @@ impl Serialize for Error {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/test-http-api/src/api.rs
@@ -15,6 +15,7 @@ use radicle::{git, identity};
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -23,8 +24,6 @@ use radicle_types::traits::repo::Repo;
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|
deleted crates/test-http-api/src/error.rs
@@ -1,32 +0,0 @@
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
modified crates/test-http-api/src/lib.rs
@@ -7,7 +7,6 @@ use tokio::net::TcpListener;
|
|
|
|
|
|
| - | |
|
|
|
|
|
modified crates/test-http-api/src/main.rs
@@ -30,6 +30,6 @@ fn parse_options() -> Result<api::Options, lexopt::Error> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|