Skip to content

Commit 8ac5855

Browse files
Update minimum supported rust version to 1.88
1 parent 03f8561 commit 8ac5855

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.cirrus.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
task:
2-
name: rust 1.85 on freebsd 13
2+
name: rust 1.88 on freebsd 13
33
freebsd_instance:
44
image: freebsd-13-1-release-amd64
55
setup_script:
66
- curl https://sh.rustup.rs -sSf --output rustup.sh
7-
- sh rustup.sh -y --profile=minimal --default-toolchain=1.85
7+
- sh rustup.sh -y --profile=minimal --default-toolchain=1.88
88
- . $HOME/.cargo/env
99
- rustup --version
1010
- rustup component add clippy
@@ -59,14 +59,14 @@ task:
5959
- FREEBSD_CI=1 cargo test --lib -- --test-threads=1
6060

6161
task:
62-
name: rust 1.85 on mac m1
62+
name: rust 1.88 on mac m1
6363
macos_instance:
6464
image: ghcr.io/cirruslabs/macos-monterey-base:latest
6565
setup_script:
6666
- brew update
6767
- brew install curl
6868
- curl https://sh.rustup.rs -sSf --output rustup.sh
69-
- sh rustup.sh -y --profile=minimal --default-toolchain=1.85
69+
- sh rustup.sh -y --profile=minimal --default-toolchain=1.88
7070
- source $HOME/.cargo/env
7171
- rustup --version
7272
- rustup component add clippy

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- { os: 'ubuntu-latest', target: 'x86_64-linux-android', cross: true }
7474
- { os: 'ubuntu-latest', target: 'i686-linux-android', cross: true }
7575
toolchain:
76-
- "1.85.0" # minimum supported rust version
76+
- "1.88.0" # minimum supported rust version
7777
- stable
7878
- nightly
7979
steps:
@@ -240,7 +240,7 @@ jobs:
240240
- macos-latest
241241
- windows-latest
242242
toolchain:
243-
- "1.85.0" # minimum supported rust version
243+
- "1.88.0" # minimum supported rust version
244244
- stable
245245
- nightly
246246
steps:
@@ -302,7 +302,7 @@ jobs:
302302
strategy:
303303
matrix:
304304
toolchain:
305-
- "1.85.0" # minimum supported rust version
305+
- "1.88.0" # minimum supported rust version
306306
- stable
307307
steps:
308308
- uses: actions/checkout@v4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Library to get system information such as processes, CPUs, disks,
66
repository = "https://github.com/GuillaumeGomez/sysinfo"
77
license = "MIT"
88
readme = "README.md"
9-
rust-version = "1.85"
9+
rust-version = "1.88"
1010
exclude = ["/test-unknown"]
1111
keywords = ["system-information", "disk", "process", "network", "cpu"]
1212
edition = "2024"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can still use `sysinfo` on non-supported OSes, it'll simply do nothing and a
1818
empty values. You can check in your program directly if an OS is supported by checking the
1919
[`IS_SUPPORTED_SYSTEM`] constant.
2020

21-
The minimum-supported version of `rustc` is **1.85**.
21+
The minimum-supported version of `rustc` is **1.88**.
2222

2323
## Usage
2424

0 commit comments

Comments
 (0)