From 79fc1db14c8f66db4a3980b5e0a4f1050e8da155 Mon Sep 17 00:00:00 2001 From: Cain Date: Sun, 22 Feb 2026 18:19:48 +0000 Subject: [PATCH] fix(MSRV): update to 1.85.1 across the project --- .github/workflows/ci.yml | 2 +- .pre-commit-config.yaml | 2 +- README.md | 4 ++-- VERSIONS.md | 2 +- crates/cli/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d79ee4b..89dbef3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,7 @@ jobs: - name: Install MSRV uses: actions-rs/toolchain@v1 with: - toolchain: 1.82.0 + toolchain: 1.85.1 override: true - name: Run MSRV run: cargo check -p gamedig diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a063b2..ba5f8e4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: language: system files: '([.]rs|Cargo\.toml)$' pass_filenames: false - entry: rustup run --install 1.82.0 cargo check -p gamedig + entry: rustup run --install 1.85.1 cargo check -p gamedig - id: docs name: Check rustdoc compiles diff --git a/README.md b/README.md index baf570c..32f0d7c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ on Discord. ## Usage -Minimum Supported Rust Version is `1.82.0` and the code is cross-platform. +Minimum Supported Rust Version is `1.85.1` and the code is cross-platform. Pick a game/service/protocol (check the [GAMES](GAMES.md), [SERVICES](SERVICES.md) and [PROTOCOLS](PROTOCOLS.md) files to see the currently supported ones), provide the ip and the port (be aware that some game servers use a separate port @@ -102,7 +102,7 @@ Want to see more examples? Checkout the [examples](crates/lib/examples) folder. ## Command Line Interface The library also has an [official CLI](https://crates.io/crates/gamedig_cli) that you can use, it has -MSRV of `1.82.0`. +MSRV of `1.85.1`. ## Documentation diff --git a/VERSIONS.md b/VERSIONS.md index fdee64d..02c96c7 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -1,6 +1,6 @@ # MSRV (Minimum Supported Rust Version) -Current: `1.82.0` +Current: `1.85.1` Places to update: diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 2bb9675..92857a9 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -12,7 +12,7 @@ homepage = "https://gamedig.github.io/" repository = "https://github.com/gamedig/rust-gamedig" readme = "README.md" keywords = ["server", "query", "game", "check", "status"] -rust-version = "1.82.0" +rust-version = "1.85.1" categories = ["command-line-interface"] [features] diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index cc58e31..7a27a6a 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -13,7 +13,7 @@ documentation = "https://docs.rs/gamedig/latest/gamedig/" repository = "https://github.com/gamedig/rust-gamedig" readme = "README.md" keywords = ["server", "query", "game", "check", "status"] -rust-version = "1.82.0" +rust-version = "1.85.1" categories = ["parser-implementations", "parsing", "network-programming", "encoding"] [features]