Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = ["crates/cli", "crates/core", "crates/s3"]
[workspace.package]
version = "0.1.3"
edition = "2024"
rust-version = "1.92"
rust-version = "1.88"

Copilot AI Feb 24, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MSRV has been updated to 1.88 in Cargo.toml, but several other files still reference the old 1.92 version and need to be updated for consistency:

  1. .github/workflows/ci.yml line 119 - The MSRV CI job still uses toolchain "1.92"
  2. Dockerfile line 1 - Uses rust:1.92.0-alpine3.23 base image
  3. README.md line 293 - Documents "Rust 1.92 or higher"
  4. CHANGELOG.md line 25 - States "Updated minimum supported Rust version (MSRV) to 1.92"

All these references should be updated to 1.88 to match this change. The inconsistency could cause CI failures and confusion for users.

Copilot uses AI. Check for mistakes.
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustfs/cli"
homepage = "https://github.com/rustfs/cli"
Expand Down