Skip to content

Commit f43d745

Browse files
committed
msrv: set to Rust 1.60.0
This sets 'rust-version' to 1.60 and also increases the pinned Rust version that we test against in CI to 1.60.0. Rust 1.60.0 was released over a year ago and contains some important stuff. Notably, it includes namespaced and weak dependency features that are used in the (soon to be) released aho-corasick 1.0. They will also be extensively used in regex-automata 0.3, which is coming to a rust-lang/regex repository near you Real Soon Now.
1 parent fd1d95b commit f43d745

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
include:
5353
- build: pinned
5454
os: ubuntu-latest
55-
rust: 1.41.1
55+
rust: 1.60.0
5656
- build: stable
5757
os: ubuntu-latest
5858
rust: stable

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ categories = ["text-processing"]
1515
autotests = false
1616
exclude = ["/scripts/*", "/.github/*"]
1717
edition = "2018"
18+
rust-version = "1.60.0"
1819

1920
[workspace]
2021
members = [

regex-syntax/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ homepage = "https://github.com/rust-lang/regex"
99
description = "A regular expression parser."
1010
workspace = ".."
1111
edition = "2018"
12+
rust-version = "1.60.0"
1213

1314
# Features are documented in the "Crate features" section of the crate docs:
1415
# https://docs.rs/regex-syntax/*/#crate-features

0 commit comments

Comments
 (0)