Skip to content

Commit 23b4700

Browse files
authored
fix: Change MSRV to 1.88.0 (#1520)
* fix: Version change * fix: Min version * fix: Go back one more version
1 parent e0d27d0 commit 23b4700

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/release_readiness.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
os: [windows-latest, macos-latest, ubuntu-latest]
53-
rust_version: [stable, 1.86.0]
53+
rust_version: [stable, 1.88.0]
5454

5555
steps:
5656
- name: Checkout repository
@@ -81,7 +81,7 @@ jobs:
8181
fail-fast: false
8282
matrix:
8383
os: [windows-latest, macos-latest, ubuntu-latest]
84-
rust_version: [stable, 1.86.0]
84+
rust_version: [stable, 1.88.0]
8585

8686
steps:
8787
- name: Checkout repository
@@ -112,7 +112,7 @@ jobs:
112112
fail-fast: false
113113
matrix:
114114
target: [aarch64-unknown-linux-gnu]
115-
rust_version: [stable, 1.86.0]
115+
rust_version: [stable, 1.88.0]
116116

117117
steps:
118118
- name: Checkout repository

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ NOTE: The current release includes a new API that replaces old methods of readin
6060

6161
To use the CAI Rust library, you must install [Rust and Cargo](https://doc.rust-lang.org/cargo/index.html).
6262

63-
Minimal supported Rust version (MSRV): The `c2pa` crate requires Rust version 1.86.0 or newer. When a newer version of Rust becomes required, a new minor (0.x.0) version of this crate will be released.
63+
Minimal supported Rust version (MSRV): The `c2pa` crate requires Rust version 1.88.0 or newer. When a newer version of Rust becomes required, a new minor (0.x.0) version of this crate will be released.
6464

6565
**Install C build tools**
6666

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The C2PA Rust library has been tested on:
1111

1212
## Requirements
1313

14-
The C2PA Rust library requires **Rust version 1.86.0** or newer.
14+
The C2PA Rust library requires **Rust version 1.88.0** or newer.
1515

1616
To use the library, add this to your `Cargo.toml`:
1717

export_schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version.workspace = true
44
authors = ["Dave Kozma <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"
7-
rust-version = "1.86.0"
7+
rust-version = "1.88.0"
88

99
[lints.rust]
1010
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }

macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version.workspace = true
44
authors = ["Gavin Peacock <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.86.0"
7+
rust-version = "1.88.0"
88

99
[lib]
1010
proc-macro = true
1111

1212
[dependencies]
13-
quote = "1.0.40"
13+
quote = "1.0.40"
1414
syn = { version = "2.0.82" }

make_test_images/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version.workspace = true
44
authors = ["Gavin Peacock <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.86.0"
7+
rust-version = "1.88.0"
88

99
[lints.rust]
1010
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }

sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ readme = "../README.md"
2020
keywords = ["xmp", "metadata"]
2121
categories = ["api-bindings"]
2222
edition = "2021"
23-
rust-version = "1.86.0"
23+
rust-version = "1.88.0"
2424
exclude = ["tests/fixtures"]
2525

2626
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)