From 398d59e4dff4a520183bd8c17feff072675a67f3 Mon Sep 17 00:00:00 2001 From: DanGould Date: Mon, 8 Jul 2024 11:45:47 -0400 Subject: [PATCH] Specify rust-version 1.63 in Cargo.toml Both `payjoin` and `payjoin-cli` use 1.63.0 as MSRV. Specifying the MSRV in Cargo.toml ensures it displpays on crates.io. --- payjoin-cli/Cargo.toml | 1 + payjoin/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/payjoin-cli/Cargo.toml b/payjoin-cli/Cargo.toml index 25037286..4cb9d1e8 100644 --- a/payjoin-cli/Cargo.toml +++ b/payjoin-cli/Cargo.toml @@ -9,6 +9,7 @@ keywords = ["bip78", "payjoin", "bitcoin"] categories = ["cryptography::cryptocurrencies", "network-programming"] license = "MITNFA" edition = "2021" +rust-version = "1.63" resolver = "2" exclude = ["tests"] diff --git a/payjoin/Cargo.toml b/payjoin/Cargo.toml index 95430b17..276a60d2 100644 --- a/payjoin/Cargo.toml +++ b/payjoin/Cargo.toml @@ -10,6 +10,7 @@ categories = ["api-bindings", "cryptography::cryptocurrencies", "network-program license = "MITNFA" resolver = "2" edition = "2021" +rust-version = "1.63" exclude = ["tests"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html