From 7eaea3e2f45fb9d9f45b54255b2ec70e4237b050 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 7 Oct 2024 13:38:47 -0500 Subject: [PATCH] Switch build pipeline to MSRV 1.74 --- .github/workflows/build.yaml | 2 +- CARGO_README.md | 2 -- Cargo.toml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5d61417..f60322c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -72,7 +72,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: - toolchain: stable + toolchain: 1.74 targets: ${{ matrix.target }} - name: Cache Rust dependencies diff --git a/CARGO_README.md b/CARGO_README.md index db5b4f8..8a0dbcf 100644 --- a/CARGO_README.md +++ b/CARGO_README.md @@ -13,8 +13,6 @@ A simple CLI-based application for creating a `credentials.json` file, used by ` - Automatically places configuration files - No dependencies, no installation, no fuss ->This README is literally filled with lies. I'm not joking, I've just typed up a bunch of features I plan to implement, and am planning them out now. A fair amount of it works, but most of the specific options aren't currently implemented. I'm working on it, I promise! - ## Quickstart You can run this application without installing anything by using the following commands. diff --git a/Cargo.toml b/Cargo.toml index 14e8b77..3dc1332 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "spotify-quickauth" version = "0.1.5" edition = "2021" description = "Quickly authenticate librespot-based applications with Spotify" -rust-version = "1.81" +rust-version = "1.74" authors = ["Ryan Walters "] homepage = "https://github.com/Xevion/spotify-quickauth" repository = "https://github.com/Xevion/spotify-quickauth"