Skip to content

Commit

Permalink
Set MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Oct 22, 2024
1 parent 48bb152 commit 031a9ba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2.1
# - Incremental builds should be disabled in CI, since they don't provide much benefit.

environment:
RUST_VERSION: "1.77.1" # Ensure that this matches the `rust-version` in `Cargo.toml`.
RUST_VERSION: "1.82.0" # Ensure that this matches the `rust-version` in `Cargo.toml`.

orbs:
windows: circleci/[email protected]
Expand All @@ -15,11 +15,11 @@ executors:
macos-executor:
macos:
xcode: "16.0.0" # Use appropriate Xcode version
resource_class: xlarge
resource_class: m2pro.large

linux-executor:
docker:
- image: "cimg/rust:1.77.1" # Ensure that this matches the `rust-version` in `Cargo.toml`.
- image: "cimg/rust:1.82.0" # Ensure that this matches the `rust-version` in `Cargo.toml`.


commands:
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

check-style:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- checkout
Expand All @@ -183,7 +183,7 @@ jobs:

clippy:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- checkout
Expand All @@ -203,7 +203,7 @@ jobs:

leo-executable:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- checkout
Expand All @@ -225,7 +225,7 @@ jobs:

leo-new:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -238,7 +238,7 @@ jobs:
leo-clean:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -251,7 +251,7 @@ jobs:
leo-example:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -264,7 +264,7 @@ jobs:
test-examples:
docker:
- image: cimg/rust:1.76
- image: cimg/rust:1.82
resource_class: xlarge
steps:
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

macos:
name: macOS
runs-on: macos-latest
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ include = [
]
license = "GPL-3.0"
edition = "2021"
rust-version = "1.82.0" # Be sure to update CI and the ./rust-toolchain file.

[workspace]
members = [
Expand Down
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.82.0

0 comments on commit 031a9ba

Please sign in to comment.