Skip to content

Commit 07f569e

Browse files
committed
Bump MSRV to 1.83.0
Update Minimum Supported Rust Version from 1.75.0 to 1.83.0 due to dependency requirements (icu_collections v2.1.1 requires rustc 1.83+). Updated in: - Cargo.toml: rust-version field - README.md: version badge and policy section - CONTRIBUTING.md: prerequisites section - .github/workflows/test.yaml: CI test matrix
1 parent cafcffb commit 07f569e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest]
20-
rust: [stable, 1.75.0]
20+
rust: [stable, 1.83.0]
2121
steps:
2222
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
- uses: dtolnay/rust-toolchain@stable # Action's stable branch. No SHA pinning - repo doesn't publish releases.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thank you for your interest in contributing to the Rust SDK for mcpd plugins!
1717

1818
### Prerequisites
1919

20-
- Rust 1.75 or later
20+
- Rust 1.83 or later
2121
- `cargo` and `rustup`
2222

2323
### Install Development Tools

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mcpd-plugins-sdk"
33
version = "0.0.2"
44
edition = "2021"
5-
rust-version = "1.75"
5+
rust-version = "1.83"
66
authors = ["Mozilla AI"]
77
license = "Apache-2.0"
88
description = "Rust SDK for building mcpd plugins"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mcpd-plugins-sdk-rust
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
4-
[![Rust Version](https://img.shields.io/badge/rust-1.75%2B-orange.svg)](https://www.rust-lang.org)
4+
[![Rust Version](https://img.shields.io/badge/rust-1.83%2B-orange.svg)](https://www.rust-lang.org)
55

66
Rust SDK for building [mcpd](https://github.com/mozilla-ai/mcpd) (Mozilla Community Plugin Daemon) plugins.
77

@@ -387,7 +387,7 @@ PROTO_VERSION=v0.0.3 cargo build
387387

388388
## Rust Version Policy
389389

390-
This crate requires Rust 1.75 or later. We follow a conservative MSRV policy and will clearly communicate any MSRV bumps.
390+
This crate requires Rust 1.83 or later. We follow a conservative MSRV policy and will clearly communicate any MSRV bumps.
391391

392392
## Contributing
393393

0 commit comments

Comments
 (0)