From 9a570679f616e257df07956855a801c811110c89 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 21 Dec 2023 14:08:56 +0100 Subject: [PATCH] Bump minimum supported Rust version to 1.63.0 Trying to compile on v1.48.0 now fails with: ``` Error: failed to parse manifest at `/home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.6.4/Cargo.toml` Caused by: failed to parse the `edition` key ``` --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd01ad7..978a1d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: [push, pull_request] env: - RUST_MINVERSION: 1.48.0 + RUST_MINVERSION: 1.63.0 jobs: test: @@ -16,7 +16,7 @@ jobs: - stable - beta - nightly - - 1.48.0 + - 1.63.0 features: - '' diff --git a/Cargo.toml b/Cargo.toml index 8d4d845..de9ddb1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,7 @@ readme = "README.md" repository = "https://github.com/fflorent/nom_locate" version = "4.2.0" edition = "2018" +rust-version = "1.63.0" [badges.travis-ci] repository = "fflorent/nom_locate"