commit 37974df26522bda17c1d176a626a6861dca813aa
parent 68d0100946265da7e7cf82a348e9bdfc5d908d06
Author: Eric Scouten <scouten@adobe.com>
Date: Thu, 25 Aug 2022 15:48:50 -0600
Bump MSRV to 1.59.0 (#118)
Diffstat:
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -53,7 +53,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
- rust_version: [1.58.0]
+ rust_version: [1.59.0]
steps:
- name: Checkout repository
@@ -69,7 +69,7 @@ jobs:
uses: Swatinem/rust-cache@v1
# Note that we do not run code coverage because
- # it was not stabilized as of 1.58.0.
+ # it was not stabilized as of 1.59.0.
- name: Run self tests
uses: actions-rs/cargo@v1
diff --git a/README.md b/README.md
@@ -29,7 +29,7 @@ We welcome contributions to this project. For information on contributing, prov
## Requirements
-The SDK requires **Rust version 1.58.0** or newer.
+The SDK requires **Rust version 1.59.0** or newer.
### Supported platforms
diff --git a/make_test_images/Cargo.toml b/make_test_images/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.12.0"
authors = ["Gavin Peacock <gpeacock@adobe.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
-rust-version = "1.58.0"
+rust-version = "1.59.0"
[dependencies]
anyhow = "1.0"
diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml
@@ -9,7 +9,7 @@ readme = "../README.md"
keywords = ["xmp", "metadata"]
categories = ["api-bindings"]
edition = "2018"
-rust-version = "1.58.0"
+rust-version = "1.59.0"
exclude = ["tests/fixtures"]
[package.metadata.docs.rs]