c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

commit fae9b4b0fdc783f6e7e2f66dea52f276f964d51b
parent e75124ed7f9071d17f206afc5848de8a495b9db4
Author: Eric Scouten <scouten@adobe.com>
Date:   Thu,  2 Mar 2023 10:50:38 -0800

(MINOR) Bump MSRV to 1.63.0 (#198)

Reason: Upstream dependency [openssl-src](https://crates.io/crates/openssl-src/versions) released a minor version upgrade (111.25.1+1.1.1t) a few days ago which _says_ that it bumps MSRV to 1.57.0, but that appears to be incorrect. Local testing shows that it no longer compiles with any version prior to 1.63.0.
Diffstat:
M.github/workflows/ci.yml | 2+-
MREADME.md | 2+-
Mmake_test_images/Cargo.toml | 2+-
Msdk/Cargo.toml | 2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest, ubuntu-latest] - rust_version: [1.61.0, stable] + rust_version: [1.63.0, stable] steps: - name: Checkout repository 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.61.0** or newer. +The SDK requires **Rust version 1.63.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.17.0" authors = ["Gavin Peacock <gpeacock@adobe.com>"] license = "MIT OR Apache-2.0" edition = "2018" -rust-version = "1.61.0" +rust-version = "1.63.0" [dependencies] anyhow = "1.0" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml @@ -11,7 +11,7 @@ readme = "../README.md" keywords = ["xmp", "metadata"] categories = ["api-bindings"] edition = "2018" -rust-version = "1.61.0" +rust-version = "1.63.0" exclude = ["tests/fixtures"] [package.metadata.docs.rs]