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 42cb1c059773e6bc71d829f68767df7132d66fe7
parent b6d075d7d95c547a4baf2d8d7c1b5253eb8e40ee
Author: Eric Scouten <scouten@adobe.com>
Date:   Tue,  8 Nov 2022 09:33:56 -0800

(MINOR) Bump MSRV to 1.61 (#142)


Diffstat:
M.github/workflows/ci.yml | 35+----------------------------------
MREADME.md | 2+-
Mmake_test_images/Cargo.toml | 2+-
Msdk/Cargo.toml | 2+-
4 files changed, 4 insertions(+), 37 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: [stable] + rust_version: [1.61.0, stable] steps: - name: Checkout repository @@ -45,39 +45,6 @@ jobs: fail_ci_if_error: true verbose: true - tests-msrv: - name: Unit tests - runs-on: ${{ matrix.os }} - - strategy: - fail-fast: false - matrix: - os: [windows-latest, macos-latest, ubuntu-latest] - rust_version: [1.59.0] - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.rust_version }} - override: true - - - name: Cache Rust dependencies - uses: Swatinem/rust-cache@v1 - - # Note that we do not run code coverage because - # it was not stabilized as of 1.59.0. - - - name: Run self tests - uses: actions-rs/cargo@v1 - with: - command: test - # args: --all-targets --all-features --workspace (waiting on bug fix) - args: --all-features --workspace - wasm_tests: name: Wasm tests runs-on: ubuntu-latest 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.59.0** or newer. +The SDK requires **Rust version 1.61.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.14.1" authors = ["Gavin Peacock <gpeacock@adobe.com>"] license = "MIT OR Apache-2.0" edition = "2018" -rust-version = "1.59.0" +rust-version = "1.61.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.59.0" +rust-version = "1.61.0" exclude = ["tests/fixtures"] [package.metadata.docs.rs]