From ef8fd32dc608669e23c6a9fd6f1afe5233f4c427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Chauvel?= Date: Thu, 12 Aug 2021 16:46:37 +0200 Subject: [PATCH] Update MSRV and add it in rust-toolchain.toml --- .github/workflows/unit-tests.yml | 2 +- README.md | 6 +++--- rust-toolchain.toml | 2 ++ 3 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 rust-toolchain.toml diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 4071b3a..05b7d54 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - rust: [1.48.0, stable, beta, nightly] + rust: [1.56.1, stable, beta, nightly] steps: - name: Checkout repository diff --git a/README.md b/README.md index ec4749f..c8c4e03 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,8 @@ To build without Git support, run `cargo install --no-default-features exa` is a

Development - - Rust 1.45.2+ + + Rust 1.56.1+ @@ -207,7 +207,7 @@ To build without Git support, run `cargo install --no-default-features exa` is a

exa is written in [Rust](https://www.rust-lang.org/). -You will need rustc version 1.45.2 or higher. +You will need rustc version 1.56.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: diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..071aaaa --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.56.1"