From 65e32cbf9d3d8a33b0dc870c82cd3fae1d896cac Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 6 Sep 2024 13:53:51 +1000 Subject: [PATCH] jsonrpc: Actually bump the MSRV Before we migrated the `jsonrpc` crate into this repo I did a PR to bump the MSRV that was merged [0] in which I did not actually update the `rust-version` in the manifest - face palm. [0] https://github.com/apoelstra/rust-jsonrpc/pull/125 --- jsonrpc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonrpc/Cargo.toml b/jsonrpc/Cargo.toml index f63a2e8..249c001 100644 --- a/jsonrpc/Cargo.toml +++ b/jsonrpc/Cargo.toml @@ -10,7 +10,7 @@ description = "Rust support for the JSON-RPC 2.0 protocol" keywords = [ "protocol", "json", "http", "jsonrpc" ] readme = "README.md" edition = "2021" -rust-version = "1.56.1" +rust-version = "1.63.0" exclude = ["tests", "contrib"] [package.metadata.docs.rs]