From 71916520ce422c4704ec4815933c2aecf8bde1c7 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 2 Sep 2024 16:56:14 +1000 Subject: [PATCH 1/2] Fix line length warning --- jsonrpc/src/http/minreq_http.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/jsonrpc/src/http/minreq_http.rs b/jsonrpc/src/http/minreq_http.rs index 4195624..de1a5e1 100644 --- a/jsonrpc/src/http/minreq_http.rs +++ b/jsonrpc/src/http/minreq_http.rs @@ -173,9 +173,10 @@ impl fmt::Display for HttpError { impl error::Error for HttpError {} -/// Error that can happen when sending requests. In case of error, a JSON error is returned if the -/// body of the response could be parsed as such. Otherwise, an HTTP error is returned containing -/// the status code and the raw body. +/// Error that can happen when sending requests. +/// +/// In case of error, a JSON error is returned if the body of the response could be parsed as such. +/// Otherwise, an HTTP error is returned containing the status code and the raw body. #[non_exhaustive] #[derive(Debug)] pub enum Error { From 02f709c70eef234eb3151cc7f8ff8ceaabf4c3fa Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 2 Sep 2024 15:52:58 +1000 Subject: [PATCH 2/2] Update nightly toolchain pin Manually update the pinned nightly toolchain to a recent one. --- nightly-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nightly-version b/nightly-version index 3bc7334..e67d571 100644 --- a/nightly-version +++ b/nightly-version @@ -1 +1 @@ -nightly-2024-06-02 +nightly-2024-09-01