Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading