From d24bb5f2ba66792e63f426cb35dc205098311866 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 25 Aug 2026 07:09:32 +0000 Subject: [PATCH] Raise MSRV to 1.88 so cargo install --locked matches Cargo.lock. Locked icu_* 2.3.0 crates require rustc 1.88. Document that, set rust-version, and add a CI check on 1.88.0. Co-authored-by: Fang-Pen Lin --- .github/workflows/ci.yml | 7 +++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ba8a62..3c1e229 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,13 @@ env: CARGO_TERM_COLOR: always jobs: + msrv: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@1.88.0 + - run: cargo check --locked --all-targets + test: runs-on: ubuntu-latest steps: diff --git a/Cargo.toml b/Cargo.toml index 617e0b7..c65960d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "amendable-cli" version = "0.1.0" edition = "2021" -rust-version = "1.85" +rust-version = "1.88" description = "Command line client for Amendable Git storage" license = "MIT" authors = ["Launch Platform LLC"] diff --git a/README.md b/README.md index 82574ee..fced3dc 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Talks to `https://api.amendable.io` by default. ### Cargo -Requires Rust 1.85+ ([rustup](https://rustup.rs/)). +Requires Rust 1.88+ ([rustup](https://rustup.rs/)). ```bash cargo install --git https://github.com/LaunchPlatform/amendable-cli --locked