Skip to content

Commit

Permalink
Upgrade Rust version to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ariasuni committed Aug 3, 2023
1 parent 08cc56d commit 17893b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
rust: [1.63.0, stable, beta, nightly]
rust: [1.66.1, stable, beta, nightly]

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A modern replacement for ls"
authors = ["Benjamin Sago <[email protected]>"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.66.1"
exclude = ["/devtools/*", "/Justfile", "/Vagrantfile", "/screenshots.png"]
readme = "README.md"
homepage = "https://the.exa.website/"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ To build without Git support, run `cargo install --no-default-features exa` is a
<a id="development">
<h1>Development

<a href="https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html">
<img src="https://img.shields.io/badge/rustc-1.63.0+-lightgray.svg" alt="Rust 1.63.0+" />
<a href="https://blog.rust-lang.org/2023/01/10/Rust-1.66.1.html">
<img src="https://img.shields.io/badge/rustc-1.66.1+-lightgray.svg" alt="Rust 1.66.1+" />
</a>

<a href="https://github.com/ogham/exa/blob/master/LICENCE">
Expand All @@ -206,7 +206,7 @@ To build without Git support, run `cargo install --no-default-features exa` is a
</h1></a>

exa is written in [Rust](https://www.rust-lang.org/).
You will need rustc version 1.56.1 or higher.
You will need rustc version 1.66.1 or higher.
The recommended way to install Rust for development is from the [official download page](https://www.rust-lang.org/tools/install), using rustup.

Once Rust is installed, you can compile exa with Cargo:
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.63.0"
channel = "1.66.1"

0 comments on commit 17893b5

Please sign in to comment.