Skip to content

Commit

Permalink
Cargo.toml: bump MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnychevalier committed Apr 14, 2023
1 parent 145281c commit 7a05736
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
- name: Default features
run: cargo test --workspace
msrv:
name: "Check MSRV: 1.64.0"
name: "Check MSRV: 1.65.0"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.64.0 # MSRV
toolchain: 1.65.0 # MSRV
profile: minimal
override: true
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.64.0 # MSRV
toolchain: 1.65.0 # MSRV
profile: minimal
override: true
components: clippy
Expand All @@ -90,4 +90,4 @@ jobs:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
rust-version: "1.64.0"
rust-version: "1.65.0"
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "cargo-multivers"
version = "0.3.1"
version = "0.3.2"
description = "Cargo subcommand to build multiple versions of the same binary, each with a different CPU features set, merged into a single portable optimized binary"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["hardware-support", "command-line-utilities", "development-tools::cargo-plugins"]
keywords = ["performance", "optimization", "cargo", "cpu", "features"]
rust-version = "1.64"
rust-version = "1.65"
repository = "https://github.com/ronnychevalier/cargo-multivers"
include = [
"/src/*",
Expand Down

0 comments on commit 7a05736

Please sign in to comment.