From 4d5415f83545bba238f5b78b1730bfb14e7d86ba Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 15 Nov 2023 11:54:33 +1100 Subject: [PATCH] Add rust-version to the workspace manifests Add `rust-version = 1.56.1` to all crates in the workspace i.e., including `fuzz` but excluding the various test crates. --- bitcoin/Cargo.toml | 1 + fuzz/Cargo.toml | 1 + fuzz/generate-files.sh | 1 + hashes/Cargo.toml | 1 + internals/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 7afb1864..3714b2fe 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -10,6 +10,7 @@ categories = ["cryptography::cryptocurrencies"] keywords = [ "crypto", "bitcoin" ] readme = "../README.md" edition = "2021" +rust-version = "1.56.1" exclude = ["tests", "contrib"] [features] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index b897bdfb..9abf5cd6 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "bitcoin-fuzz" edition = "2021" +rust-version = "1.56.1" version = "0.0.1" authors = ["Generated by fuzz/generate-files.sh"] publish = false diff --git a/fuzz/generate-files.sh b/fuzz/generate-files.sh index 39105af4..18cba6a8 100755 --- a/fuzz/generate-files.sh +++ b/fuzz/generate-files.sh @@ -12,6 +12,7 @@ cat > "$REPO_DIR/fuzz/Cargo.toml" <