Skip to content

Commit 5f8ccf5

Browse files
feat: Bump MSRV to 1.86.0 (#1269)
1 parent 9ce019f commit 5f8ccf5

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
fail-fast: false
5656
matrix:
5757
os: [windows-latest, macos-latest, ubuntu-latest]
58-
rust_version: [stable, 1.85.0]
58+
rust_version: [stable, 1.86.0]
5959

6060
steps:
6161
- name: Checkout repository
@@ -269,7 +269,7 @@ jobs:
269269
fail-fast: false
270270
matrix:
271271
target: [aarch64-unknown-linux-gnu]
272-
rust_version: [stable, 1.85.0]
272+
rust_version: [stable, 1.86.0]
273273

274274
steps:
275275
- name: Checkout repository

README.md

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

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

59-
Minimal supported Rust version (MSRV): The `c2pa` crate requires Rust version 1.85.0 or newer. When a newer version of Rust becomes required, a new minor (0.x.0) version of this crate will be released.
59+
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.
6060

6161
**Install C build tools**
6262

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.85.0** or newer.
14+
The C2PA Rust library requires **Rust version 1.86.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.85.0"
7+
rust-version = "1.86.0"
88

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

macros/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.85.0"
7+
rust-version = "1.86.0"
88

99
[lib]
1010
proc-macro = true

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.85.0"
7+
rust-version = "1.86.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.85.0"
23+
rust-version = "1.86.0"
2424
exclude = ["tests/fixtures"]
2525

2626
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)